Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ahy4/3ffc013fbd2b85f25aa3c5fcf133f62e to your computer and use it in GitHub Desktop.

Select an option

Save ahy4/3ffc013fbd2b85f25aa3c5fcf133f62e to your computer and use it in GitHub Desktop.
console.log("abcde".split``); // .split("") より2文字短い
console.log([1,2,3].join``); // .join("") より2文字短い
console.log("aabbcc".split`b`.join`B`); // .replace(/b/g,"B") より 1文字短い
console.log("abcde".match`b.d`); // .match(/b.d/) より2文字短い
console.log([1,2,3].push``); // .length+1 より 2文字短い
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment