Skip to content

Instantly share code, notes, and snippets.

@Serrin
Created August 23, 2020 12:08
Show Gist options
  • Save Serrin/a8f336f486b6a8a6288197c8aa9ebbc8 to your computer and use it in GitHub Desktop.
Save Serrin/a8f336f486b6a8a6288197c8aa9ebbc8 to your computer and use it in GitHub Desktop.
"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