When using bind(), what happens to the original function?
When using bind(): 1) Original function remains completely unchanged, 2) A new function is created with the bound context, 3) Multiple bound versions can be created from the same original, 4) Original function can still be called normally, 5) Bound function maintains its own separate context, 6) Memory efficient as it creates references rather than copies of the function code.