function printLinkedList(head) {
let current = head;
while(current){
console.log(current.data);
current = current.next;
}
}
For further actions, you may consider blocking this person and/or reporting abuse
function printLinkedList(head) {
let current = head;
while(current){
console.log(current.data);
current = current.next;
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Safdar Ali -
Charlotte Towell -
Ashish prajapati -
Teo Nordic -
Top comments (0)