Ask Your Question
3

How to make a choice between Function.bind and Closure in Javascript?

asked 2021-05-19 11:00:00 +0000

ladyg gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2021-06-27 06:00:00 +0000

david gravatar image

When it comes to choosing between Function.bind and closures in JavaScript, it depends on the specific use case and preference.

Function.bind is a method that creates a new function with a specific context, which means it allows you to set the value of 'this' for a function. This can be useful when you want to bind a specific object as the value of 'this' for a function, instead of using the default global context.

On the other hand, closures are functions that have access to variables defined in their outer scope, even after the outer function has returned. Closures can be useful when you need to maintain some state or data between function calls, or when you want to create private variables in JavaScript.

So, choosing between Function.bind and closures depends on what you want to achieve. If you need to bind a specific object as the value of 'this' for a function, Function.bind is a good choice. If you want to maintain some state or data between function calls or create private variables, closures are a good option. It is essential to understand the underlying concepts of both techniques to make the appropriate choice.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-05-19 11:00:00 +0000

Seen: 7 times

Last updated: Jun 27 '21