Created
January 13, 2017 11:34
-
-
Save saginadir/c6e1d07a76a4bdab0f0b368bb26c915d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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