Skip to content

Instantly share code, notes, and snippets.

@moriiimo
Last active December 16, 2015 05:08
Show Gist options
  • Save moriiimo/5381729 to your computer and use it in GitHub Desktop.
Save moriiimo/5381729 to your computer and use it in GitHub Desktop.
100をfor, whileを使わないでconsole.logで出力する。:level3 - if文、三項演算子を使ってはいけません
$(function(){
var num = 0;
baseAry.forEach(function(index){
num += 1;
console.log(num);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment