Skip to content

Instantly share code, notes, and snippets.

@jan-osch
Created November 4, 2019 13:27
Show Gist options
  • Save jan-osch/c1db70ff38418a2f0146930265010157 to your computer and use it in GitHub Desktop.
Save jan-osch/c1db70ff38418a2f0146930265010157 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 -->
</body>
</html>
// write ES2015 code and import modules from npm
// and then press "Execute" to run your program
let i = 111;
while(i--){
console.log(i);
}
{
"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 i = 111;
while (i--) {
console.log(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment