Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created August 22, 2015 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/f80413518ebbfca4db11 to your computer and use it in GitHub Desktop.
Save chuck0523/f80413518ebbfca4db11 to your computer and use it in GitHub Desktop.
(function() {
var log = function(x) {console.log(x)}
var a;
a = _.range(1, 11);
//log('a : '+a);
b = _.range(11);
//log('b : '+b);
c = _.range(1, 11, 2);
//log('c : '+c);
//log(_.random(10));
var ran = Math.floor(Math.random() * 10);
//log(ran);
log(_.escape('<script>'));
_.times(5, function(){
console.log('hello');
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment