← All tutorials

GoCareerGo Tutorials

JavaScript Tutorial

Variables to closures, promises, the DOM and OOP — a complete JS reference.

Currying

Transforming f(a,b,c) into f(a)(b)(c).

Quick-reference summary — a full handcrafted walkthrough is coming soon for this topic.

Transforming f(a,b,c) into f(a)(b)(c).

  • Category: JS Advanced Functions — part of the JavaScript Tutorial on GoCareerGo
  • Read the short summary above, then check the linked docs for full syntax/behaviour
  • Interview tip: be ready to explain "Currying" in one sentence, then back it up with a tiny example
// Currying — minimal example
console.log("Currying");
Tip

Quick recall: "Currying" — transforming f(a,b,c) into f(a)(b)(c).