Last active
October 10, 2016 14:16
-
-
Save ypetya/29ce0d56d953fcd74633 to your computer and use it in GitHub Desktop.
Helper
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
/nbproject |
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
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="Cache-Control" content="no-cache"> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.10.1/lodash.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.7/angular.min.js"></script> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<head> | |
<body> | |
<div> | |
<a href="http://games.usvsth3m.com/javascript-under-pressure/">js game</a> | |
</div> | |
<script src="init.js"></script> | |
</body> |
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
for (var node = 0; node < 10; node++) { | |
var ele = document.createElement('div'); | |
ele.innerHTML = String(node); | |
document.body.appendChild(ele); | |
} | |
console.log('initialized!'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment