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
Aanshinaksh27.hashnode.dev00Async/Await in JavaScriptMar 24 · 2 min read · Before async/await, JavaScript used to write asynchronous code using callbacks and promises. You can take async/await as a syntactical sugar over the promises. The need to introduce async/await was beJoin discussion