Hard
What are the call and apply keywords used for?
Author: Jean-marie CléryStatus: PublishedQuestion passed 2140 times
Edit
1
Community Evaluations
hugo
01/03/2023
Apply ne prend pas forcément un second argument en paramètre.
const user = {
name: "Pedro",
sayHi(){
return `hi my name is ${this.name}`
}
}
const otherUser = {
name: "Bob"
}
console.log(user.sayHi.apply(otherUser)) // 1 seul paramètre et c'est pas un tableau.
hugo
01/03/2023
Après c'est pas marqué sur la documentation que ca fonction sans tableau avec un seul argument. Donc mon objet "otherUser" est-il un tableau ? Peut-être. Mais il n'empêche que ça marche quand même très bien avec un seul argument.
Similar QuestionsMore questions about Javascript