//Eloquent js object snippet 8

//Eloquent js object snippet 8 console.log(Array.prototype.toString == Object.prototype.toString); //-->false console.log([1, 2].toString()); //-->1,2 /*rappelons que la methode call appelle en premier argument un objet et en deuxieme les argument de la fonction qu'elle dessert ici call appelle une liste je trouve ca bizarre et je ne comprends pas*/ console.log(Object.prototype.toString.call([1, 2])); //-->[object Array]
la methode .toString utilisee pour des listes ou pour des objects. Pas encore clair a mes yeux

1 Response

nice

Write a comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.