SShayintoddlerstech.hashnode.dev00Synchronous vs Asynchronous JsMar 26 · 2 min read · what is synchronous code ? JavaScript is fundamentally a synchronous, single-threaded language that executes code line-by-line in a sequential order, where each instruction must complete before the Join discussion
SShayintoddlerstech.hashnode.dev00Async/Await in JavaScriptMar 26 · 3 min read · to understand why async nature was introduced you must know about callbacks and promises . after reading these you will know about callback hell and how promises solve it . now there is problem with pJoin discussion
SShayintoddlerstech.hashnode.dev00String Polyfills and Common Interview Methods in JavaScriptMar 26 · 2 min read · What are string methods ? lets start with some string methods . there are many but i will only discuss about some common ones. // toUpperCase() / toLowerCase() "hello".toUpperCase(); // "HELLO" "WORLDJoin discussion
SShayintoddlerstech.hashnode.dev00if you know function you know callbackMar 26 · 2 min read · even if you have heard callback function for the first time , let me clear one thing it is no different from a function . If you can digest this then callbacks will be damn easy . you should already hJoin discussion
SShayintoddlerstech.hashnode.dev00Handling Errors so you can save a day Mar 26 · 4 min read · i am confident that you have faced errors in your life but this life hardly allows to manage those and lets you move forward :( while programming too when an error is occurred you have seen that a bigJoin discussion