VTVisshnnu Tejaainvt-blogs.hashnode.dev·May 18 · 6 min readSnapCSS — A Runtime CSS EngineSnapCSS — A Runtime CSS Engine A utility-first CSS engine that works entirely at runtime.No build step. No compilation. No tooling required. Why I Built SnapCSS Modern frontend styling systems are 00
VTVisshnnu Tejaainvt-blogs.hashnode.dev·Apr 25 · 6 min readAsync Code in Node.js: Callbacks and PromisesWhen building backend applications using Node.js, you often need to perform operations that take time — such as reading files, fetching data from APIs, or querying databases. Instead of stopping every00
VTVisshnnu Tejaainvt-blogs.hashnode.dev·Apr 24 · 3 min readCallbacks in Javascript - Why they existIn 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 argument00
VTVisshnnu Tejaainvt-blogs.hashnode.dev·Apr 24 · 2 min readTemplate Literals in JavaScriptIf 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 Nightmar00
VTVisshnnu Tejaainvt-blogs.hashnode.dev·Apr 24 · 3 min readThe new Keyword in JavascriptIf 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 transf00