Use bind to explicitly set the value of 'this' when calling a function.
declareFunction
8 months agoDeclare a function named greet that logs 'Hello, world!' to the console.
hoistMe
8 months agoCall a function before its declaration to see how hoisting works in function declarations.
logArguments
8 months agoCreate a function that logs all received arguments using the arguments object.
sumRest
8 months agoUse the rest operator to accept any number of arguments and log their total.
greetDefault
8 months agoCreate a function that greets a name. If no name is passed, it should greet 'Guest'.
personAge
8 months agoCreate an object with a getter and setter for the age property.
scopeExample
8 months agoUnderstand function scope by logging a variable from inside and outside a function.
thisKeyword
8 months agoLog the value of 'this' inside an object method.
methodVsFunction
8 months agoCreate an object method and a standalone function and log 'this' in both.
PersonConstructor
8 months agoCreate a constructor function to build a person object with a name and age.
bindThis
8 months agoUse bind to explicitly set the value of 'this' when calling a function.