Skip to main content

JavaScript Interview Prep: Functions, Closures, Currying


Curriculum for the course JavaScript Interview Prep: Functions, Closures, Currying

Prepare for JavaScript interview questions focusing on closures, functions, and currying. Throughout the course, you'll delve into various aspects of JavaScript, such as function declarations, expressions, scopes, and hoisting, as well as learning about advanced concepts like closures and lexical scope. You'll also gain a deeper understanding of currying and its practical applications in JavaScript. Course created by @RoadsideCoder Useful Links mentioned in the video - 🎥 var, let and const Video - https://www.youtube.com/watch?v=oUWRxJ19gfE&list=PLKhlp2qtUcSaCVJEt4ogEFs6I41pNnMU5 🎥 map, filter, and reduce Video - https://www.youtube.com/watch?v=dGq0gi0wv64&list=PLKhlp2qtUcSaCVJEt4ogEFs6I41pNnMU5&index=2 🎥 FE Interview Experience Video - https://www.youtube.com/watch?v=vxggZffOqek&list=PLKhlp2qtUcSb_WQZC3sq9Vw3NC4DbreUL&index=1 ⭐️ Contents ⭐️ ⌨️ (0:00:00) Intro ⌨️ (0:01:48) Function Declaration ⌨️ (0:02:13) Function Expression ⌨️ (0:02:34) Anonymous Function ⌨️ (0:03:25) First Class Functions ⌨️ (0:04:54) What is IIFE? ⌨️ (0:06:05) IIFE - Interview Question ⌨️ (0:06:59) Closures ⌨️ (0:07:27) Function Scopes ⌨️ (0:09:10) Function Scope - Interview Question ⌨️ (0:10:18) Hoisting in Functions ⌨️ (0:13:40) Hoisting - Interview Question ⌨️ (0:15:46) Params vs Arguments ⌨️ (0:16:25) Spread vs Rest Operators ⌨️ (0:17:43) Interview Question on params, args, spread, rest ⌨️ (0:19:03) Callback Function ⌨️ (0:20:02) Callback Function - Interview Questions ⌨️ (0:20:58) Arrow Functions ⌨️ (0:21:59) Arrow function vs Normal Function ⌨️ (0:25:13) Closures ⌨️ (0:25:50) What is Lexical Scope? ⌨️ (0:27:39) Lexical Scope - Interview Question ⌨️ (0:28:53) What is Closure? ⌨️ (0:29:44) Example of Closures ⌨️ (0:30:57) Why Closure? ⌨️ (0:32:20) Closure Scope Chain ⌨️ (0:35:13) Ques 1 - What will it print? ⌨️ (0:37:10) Ques 2 - Write a function for this ⌨️ (0:39:29) Ques 3 - Time Optimisation with Closures ⌨️ (0:42:08) Ques 4 - setTimeout + block scope with Closures ⌨️ (0:47:08) Ques 5 - Create a private counter ⌨️ (0:49:49) Ques 6 - What is Module Pattern? ⌨️ (0:51:40) Ques 7 - Make this run only once ⌨️ (0:54:18) Ques 8 - Once Polyfill Implementation ⌨️ (0:58:11) Ques 9 - Memoise/Caching Implementation ⌨️ (1:03:46) Ques 10 - Closure vs Scope ⌨️ (1:04:25) Currying ⌨️ (1:04:55) What is Curring in Javascript? ⌨️ (1:05:23) Example of Currying ⌨️ (1:08:17) Ques 1 - Implement sum(2)(6)(1) ⌨️ (1:11:02) Ques 2 - Reusing Variable for logic ⌨️ (1:14:09) Ques 3 - Infinite Currying ⌨️ (1:18:27) Ques 4 - Currying vs Partial Application ⌨️ (1:20:37) Ques 5 - Manipulating DOM ⌨️ (1:23:01) Ques 6 - curry() implementation

Watch Online Full Course: JavaScript Interview Prep: Functions, Closures, Currying


Click Here to watch on Youtube: JavaScript Interview Prep: Functions, Closures, Currying


This video is first published on youtube via freecodecamp. If Video does not appear here, you can watch this on Youtube always.


Udemy JavaScript Interview Prep: Functions, Closures, Currying courses free download, Plurasight JavaScript Interview Prep: Functions, Closures, Currying courses free download, Linda JavaScript Interview Prep: Functions, Closures, Currying courses free download, Coursera JavaScript Interview Prep: Functions, Closures, Currying course download free, Brad Hussey udemy course free, free programming full course download, full course with project files, Download full project free, College major project download, CS major project idea, EC major project idea, clone projects download free

Comments

Popular posts from this blog

Fake CVR Generator Denmark

What Is Danish CVR The Central Business Register (CVR) is the central register of the state with information on all Danish companies. Since 1999, the Central Business Register has been the authoritative register for current and historical basic data on all registered companies in Denmark. Data comes from the companies' own registrations on Virk Report. There is also information on associations and public authorities in the CVR. As of 2018, CVR also contains information on Greenlandic companies, associations and authorities. In CVR at Virk you can do single lookups, filtered searches, create extracts and subscriptions, and retrieve a wide range of company documents and transcripts. Generate Danish CVR For Test (Fake) Click the button below to generate the valid CVR number for Denmark. You can click multiple times to generate several numbers. These numbers can be used to Test your sofware application that uses CVR, or Testing CVR APIs that Danish Govt provide. Generate

How To Iterate Dictionary Object

Dictionary is a object that can store values in Key-Value pair. its just like a list, the only difference is: List can be iterate using index(0-n) but not the Dictionary . Generally when we try to iterate the dictionary we get below error: " Collection was modified; enumeration operation may not execute. " So How to parse a dictionary and modify its values?? To iterate dictionary we must loop through it's keys or key - value pair. Using keys

How To Append Data to HTML5 localStorage or sessionStorage?

The localStorage property allows you to access a local Storage object. localStorage is similar to sessionStorage. The only difference is that, while data stored in localStorage has no expiration time untill unless user deletes his cache, data stored in sessionStorage gets cleared when the originating window or tab get closed. These are new HTML5 objects and provide these methods to deal with it: The following snippet accesses the current domain's local Storage object and adds a data item to it using Storage.setItem() . localStorage.setItem('myFav', 'Taylor Swift'); or you can use the keyname directly as : localStorage.myFav = 'Taylor Swift'; To grab the value set in localStorage or sessionStorage, we can use localStorage.getItem("myFav"); or localStorage.myFav There's no append function for localStorage or sessionStorage objects. It's not hard to write one though.The simplest solution goes here: But we can kee