Skip to content

Instantly share code, notes, and snippets.

@xyfeng
Last active January 28, 2016 17:43
Show Gist options
  • Save xyfeng/68527b8abd73f364387b to your computer and use it in GitHub Desktop.
Save xyfeng/68527b8abd73f364387b to your computer and use it in GitHub Desktop.
Web
/* 1 to N */
var range = function (n) {
return Array(n).join().split(',').map(function(e, i) { return i; });
}
/* diffs */
array_1.filter( (i)=>{
return array_2.indexOf(i) < 0;
});
/* input number only */
<input type='text' onkeypress='return event.charCode >= 48 && event.charCode <= 57' />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment