Created
September 16, 2016 19:55
-
-
Save rwaldron/cc607ca68d076c6332f771ac7db17228 to your computer and use it in GitHub Desktop.
In a discussion with Kyle Simpson, he offered this as a representation of the basic semantics.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var o = {}; | |
class A extends o { } | |
// is: | |
var o = {}; | |
function A() {} | |
A.prototype = Object.create(o); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment