mirror of
https://github.com/JeremyLikness/vanillajs-deck
synced 2025-12-15 10:43:34 +00:00
slides through modules
This commit is contained in:
12
slides/173-es5-extends.html
Normal file
12
slides/173-es5-extends.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user