Write a function, sumList, that takes in the head of a linked list containing numbers as an argument. The function should return the total sum of all values in the linked list.
const a = new Node(2);const b = new Node(8);const c = new Node(3);const d = new Node(-1);const e = new Node(7);a.next = b;b.next = c;c.next = d;d.next = e;// 2 -> 8 -> 3 -> -1 -> 7sumList(a); // 19
const x = new Node(38);const y = new Node(4);x.next = y;// 38 -> 4sumList(x); // 42
const z = new Node(100);// 100sumList(z); // 100
sumList(null); // 0