RKRajesh Kumarinrajesh71webdev.hashnode.dev00Template Literals in JavaScript1d ago · 5 min read · If you have been writing JavaScript for more than a few days, you have likely run into the headache of combining text with variables. For years, developers had to painstakingly stitch strings and variJoin discussion
RKRajesh Kumarinrajesh71webdev.hashnode.dev00The Magic of this, call(), apply(), and bind() in JavaScriptMar 12 · 7 min read · If you hang around JavaScript developers long enough, you will eventually hear someone complain about the this keyword. It has a reputation for being confusing, unpredictable, and downright magical. BJoin discussion
RKRajesh Kumarinrajesh71webdev.hashnode.dev00Understanding Object-Oriented Programming in JavaScriptMar 11 · 7 min read · If you have been following along with our JavaScript journey, you know how to create individual objects. For example, creating a single student: let student1 = { name: "Alia", age: 23, study: fuJoin discussion
RKRajesh Kumarinrajesh71webdev.hashnode.dev00Array Methods You Must KnowMar 10 · 6 min read · In our web development journey, we have learned that arrays are fantastic for storing lists of data. But simply storing data is not enough but we need to manipulate it, update it, and extract specificJoin discussion
RKRajesh Kumarinrajesh71webdev.hashnode.dev00Arrow Functions in JavaScript: A Simpler Way to Write FunctionMar 9 · 5 min read · If you look at modern JavaScript code, especially in libraries like React or Node.js, you will notice something strange. The word function seems to have disappeared, replaced by a strange little arrowJoin discussion