Programming Fundamentals
Everything on SkillVeris tagged Programming Fundamentals — collected across the glossary, study notes, blog, and cheat sheets.
3 resources across 1 library
Interview Questions(3)
How Does the `this` Keyword Work in JavaScript?
The value of `this` in JavaScript is not fixed by where a function is defined but by how that function is called at runtime — its binding is determined by the…
What Is Currying in JavaScript?
Currying is the technique of transforming a function that takes multiple arguments into a sequence of functions that each take a single argument, returning a n…
What Is the Difference Between call, apply, and bind?
`call`, `apply`, and `bind` are all methods on `Function.prototype` used to explicitly control what `this` refers to inside a function; `call` and `apply` invo…