made with esnextbin
Created
March 29, 2017 23:21
-
-
Save amilajack/4021adeaa4579f8f141128159f12b560 to your computer and use it in GitHub Desktop.
esnextbin sketch
This file contains hidden or 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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>ESNextbin Sketch</title> | |
<!-- put additional styles and scripts here --> | |
</head> | |
<body> | |
<!-- put markup and other contents here --> | |
</body> | |
</html> |
This file contains hidden or 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
const some = { | |
databases: [ | |
{ | |
databaseName: 'foo', | |
tables: [ | |
{ | |
tableName: 'bar', | |
columns: [ | |
'row1', 'row2', 'row3' | |
], | |
rows: [ | |
{ | |
columnName: 'row1', | |
type: Number, | |
value: 2 | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
This file contains hidden or 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
{ | |
"name": "esnextbin-sketch", | |
"version": "0.0.0" | |
} |
This file contains hidden or 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
'use strict'; | |
var some = { | |
databases: [{ | |
databaseName: 'foo', | |
tables: [{ | |
tableName: 'bar', | |
columns: ['row1', 'row2', 'row3'], | |
rows: [{ | |
columnName: 'row1', | |
type: Number, | |
value: 2 | |
}] | |
}] | |
}] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment