Skip to content
JavaScript·Beginner·Conceptual·1 min read

What is partial application?

Short interview answer

It creates a function by fixing some arguments of another function. Unlike strict currying, the returned function may accept multiple remaining arguments at once.

Key takeaway

Explain the underlying mental model clearly, then support it with a concrete example and its trade-offs.

← Back to Currying

Related questions