proto ,前面有两个下划线,后面也有两个下划线 .. es6 的 proto 可以得到或者去设置对象的 prototype .. 使用 proto 可以直接在对象表达式里去设置 prototype .
sunday 等于 {} .. 添加一个 __proto__ .. 设置成 breakfast .. 下面输出 sunday 的 getDrink 方法返回的东西,输出的是 一杯茶 .. 判断 sunday 的 prototype 是不是 breakfast ,结果是 true ..
使用 proto 设置对象的 prototype ,可以这样 .. sunday.__proto__ 等于 .. dinner .. 再看一下 getDrink 返回的东西是 啤酒 .. 判断 sunday 的 prototype 是不是 dinner ,返回的结果是 true ..