MCQ
What is the purpose of the `bind()` method?
JavaScript
A Creates a new function with a specific this value
B Binds an event to an element
C Binds two objects together
D None of the above
Explanation

bind() creates a new function with a specified 'this' context and optional arguments.