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
Joel Milligan -
Michael Andreuzza -
Mateo Guzmán -
balrajOla -
Top comments (0)