SNShweta Nigaminaronamic.hashnode.dev00Error Handling in JavaScript: Try, Catch, FinallyMar 24 ยท 3 min read ยท In this article we'll understand error handling in JavaScript using try, catch, and finally. Errors are something every developer faces, no matter how experienced they are. Sometimes code breaks unexpJoin discussion
SNShweta Nigaminaronamic.hashnode.dev00Spread vs Rest Operators in JavaScriptMar 24 ยท 3 min read ยท In this article we'll understand the spread operator and rest operator. Why do we need to know the different in the first place? Well because they both are denoted with same thing and that is 'three dJoin discussion
SNShweta Nigaminaronamic.hashnode.dev00String Polyfills and Common Interview Methods in JavaScriptMar 20 ยท 4 min read ยท JavaScript strings look simple on the surface, but they hide a lot of interesting behavior underneath. As developers, we use string methods like slice(), includes(), and trim() almost every day withouJoin discussion
SNShweta Nigaminaronamic.hashnode.dev00Understanding the 'this' Keyword in JavaScriptMar 20 ยท 3 min read ยท The this keyword is one of the most misunderstood concepts in JavaScript, but the core idea is simple. The value of this depends on how a function is called, not where it is written. It represents theJoin discussion
SNShweta Nigaminaronamic.hashnode.dev00The new Keyword in JavaScriptMar 20 ยท 3 min read ยท In this article we'll learn about another magical keyword of JavaScript, the new keyword. The new keyword is used to create objects from constructor functions. Instead of manually creating an object eJoin discussion