VTVisshnnu Tejaainvt-blogs.hashnode.dev00Callbacks in Javascript - Why they exist10h ago · 3 min read · In Javascript, functions are first class citizens, this means you can treat a function just like a variable You can assign it to a value, move it around, and most importantly - pass it as an argumentJoin discussion
VTVisshnnu Tejaainvt-blogs.hashnode.dev00Template Literals in JavaScript10h ago · 2 min read · If you ever looked at a block of javascript and felt dizzy from a sea of plus signs (+) and mis matched quotes, you are not alone, Template Literals will solve this problem. The Concentration NightmarJoin discussion
VTVisshnnu Tejaainvt-blogs.hashnode.dev00The new Keyword in Javascript10h ago · 3 min read · If you have ever used a library like three.js or even just worked with built-in objects like new Date(), you have used the new keyword. But behind that tiny word is a sophisticated process that transfJoin discussion
VTVisshnnu Tejaainvt-blogs.hashnode.dev00Array Flatten in JavaScript10h ago · 2 min read · What are Nested Arrays? A nested array is simply an array that contains other arrays as its elements This is also called as a multi-dimensional array Example: const messyData = [1, [2, 3], [[4, 5]Join discussion
VTVisshnnu Tejaainvt-blogs.hashnode.dev00JavaScript Modules - Import and Export Explained10h ago · 3 min read · In the early days of javascript, before introducing modules, Developers faced several critical organisation problems Monolithic files: Developers often wrote thousands of lines in a single file, makeJoin discussion