function printListFromTailToHead(head) { let res = []; while(head){ res.push(head.val) head =head.next } &n...