Higher Order FunctionsFunctional Programming: Array Methods Click ★ if you like the project. Your contributions are heartily ♡ welcome. You can find my github repo for same: amanchauhann/ArrayMethods (github.com) Table of Contents Map Filter Slice Push Pop Shift ...Jul 3, 2023·9 min read
Reference Error vs TypeErrorReference Error When a variable is called before it is declared. It throws a 'reference error' in that scope. console.log(a) //Uncaught ReferenceError: a is not defined. This will throw a reference error. As 'a' is not yet been declared yet. For a ...Feb 13, 2023·1 min read
Declaration vs Initialization"Uncaught ReferenceError: a is not defined" Have you ever got this kind of error? And you are now confused between declaration and initialization.So, here is a short blog to differentiate. This is a declaration. We are telling our program that a vari...Feb 13, 2023·1 min read