Last active
January 13, 2016 07:53
-
-
Save xhoskin/4c0d2e575019f7660b23 to your computer and use it in GitHub Desktop.
чтобы методы массивов работали с arguments
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
Array.prototype.slice.call(arguments, 0).join("\n"); | |
// Array.prototype.slice.call – уловка для превращения объекта, похожего на массив, | |
// такого как arguments, в настоящий массив, чтобы мы могли применить к нему join |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment