namespace LinkedList {  
    
class Node {   
    constructor(
        public data, 
        public next: Node = null
    ) {}
}    
    
const head = new Node(1);
head.next = new Node(2);
console.log(head);
    
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: