semicolons

This commit is contained in:
user 2018-12-07 13:32:03 -05:00 committed by simmayor
parent 23b5766b82
commit 7a704e50fb

View file

@ -112,7 +112,7 @@ let rabbit = {
let longEar = {
earLength: 10,
__proto__: rabbit
}
};
// walk is taken from the prototype chain
longEar.walk(); // Animal walk
@ -146,7 +146,7 @@ let animal = {
let rabbit = {
__proto__: animal
}
};
*!*
rabbit.walk = function() {