Skip to content

Instantly share code, notes, and snippets.

@saginadir
Created January 13, 2017 11:34
Show Gist options
  • Save saginadir/c6e1d07a76a4bdab0f0b368bb26c915d to your computer and use it in GitHub Desktop.
Save saginadir/c6e1d07a76a4bdab0f0b368bb26c915d to your computer and use it in GitHub Desktop.
const toArray = (...args) => args; // turns all args to array.
const res1 = toArray(1, 'f', 'Apple', {hello: 'world'})[2].toUpperCase();
console.log(res1); // Will outut APPLE;
const res2 = toArray(1, 'f', 'Apple', {hello: 'world'})[2].toUpperCase().substr(0,3);
console.log(res2); // Will outut APP;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment