Skip to content

Instantly share code, notes, and snippets.

@dearfrankg
Last active March 24, 2017 06:44
Show Gist options
  • Select an option

  • Save dearfrankg/76f8df76cf3f1f1d8d1b2f1e5d2e36d6 to your computer and use it in GitHub Desktop.

Select an option

Save dearfrankg/76f8df76cf3f1f1d8d1b2f1e5d2e36d6 to your computer and use it in GitHub Desktop.
esnextbin sketch
<!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 -->
<div id="root" ></div>
</body>
</html>
// write ES2015 code and import modules from npm
// and then press "Execute" to run your program
var foo = document.getElementById('root')
console.log(55, foo)
{
"name": "esnextbin-sketch",
"version": "0.0.0"
}
'use strict';
// write ES2015 code and import modules from npm
// and then press "Execute" to run your program
var foo = document.getElementById('root');
console.log(55, foo);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment