vanillajs-deck/slides/173-es5-extends.html

12 lines
284 B
HTML
Raw Normal View History

2020-01-29 18:26:00 +00:00
<title>Looking Back (2)...</title>
<h1>Looking Back...</h1>
<pre>
var square = (function (_super) {
__extends(square, _super);
function square() {
return _super.call(this, 4) || this;
}
return square;
}(shape));
</pre>
<next-slide>177-es5-ext-impl</next-slide>