Fix js prototype example

It would also print myBoolean from prototype's prototype
This commit is contained in:
Konstantin L 2019-01-21 16:04:23 +03:00 committed by GitHub
parent de80ef8605
commit 2570367605
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -510,6 +510,7 @@ for (var x in myObj){
// Hello world!
// 43
// [Function: myFunc]
// true
// To only consider properties attached to the object itself
// and not its prototypes, use the `hasOwnProperty()` check.