Aanshinaksh27.hashnode.dev00Exploring the Linux File System 2d ago · 9 min read · Before diving deep and getting tangled in the vast file system of the Linux, let us start with what actually Linux is? Linux is an operating system, that manages your computer's hardware. It was creatJoin discussion
Aanshinaksh27.hashnode.dev00String Polyfills in JavaScript Mar 24 · 2 min read · A polyfill is a JavaScript feature that adds modern features to older browsers that do not inherently support them. They are essential for maintaining backward compatibility in JavaScript. What stringJoin discussion
Aanshinaksh27.hashnode.dev00Map and Set in JavaScript Mar 24 · 2 min read · Map and set are built in data structures that are used to store ordered collections of data, where set holds unique values map holds the data key-value pairs. What is Map? Stores data as key-value paiJoin discussion
Aanshinaksh27.hashnode.dev00Array Flatten in JavaScriptMar 24 · 1 min read · What are Nested Arrays? A nested array is an array inside another array. Eg. const arr = [b, c, [a, e, i, o, u], d, [f, g]] Why flattening arrays is useful? Flattening of arrays in JavaScript involvesJoin discussion
Aanshinaksh27.hashnode.dev00Error Handling in JavaScript: Try, Catch, Finally MethodsMar 24 · 2 min read · Everyone tends to make mistakes and to handle these mistakes JavaScript has special methods. Look the technical term for an error would be "JavaScript throws an exception". Common type of JavaScript eJoin discussion