Skip to content

Instantly share code, notes, and snippets.

View bharathikannano's full-sized avatar
🎯
Focusing

Bharathikannan Ramakrishnan bharathikannano

🎯
Focusing
View GitHub Profile
axios({
url: "http://api.com",
method: "POST",
header: {
"Content-Type": "application/json",
},
data: { name: "Sabesan", age: 25 },
});
@bradtraversy
bradtraversy / js_linked_list.js
Last active July 20, 2025 19:42
JS Linked List Class
// Construct Single Node
class Node {
constructor(data, next = null) {
this.data = data;
this.next = next;
}
}
// Create/Get/Remove Nodes From Linked List
class LinkedList {