Created
August 23, 2020 12:08
-
-
Save Serrin/a8f336f486b6a8a6288197c8aa9ebbc8 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
"use strict"; | |
// PHP function array() implemantation in JS | |
// https://gist.github.com/Serrin/a8f336f486b6a8a6288197c8aa9ebbc8 | |
// ES5 | |
//function array () { return Array.prototype.slice.call(arguments); } | |
// ES6 | |
const array = (...a) => a; | |
alert( array(4,5,6) ); | |
// [4,5,6] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment