Help for this page

Select Code to Download


  1. or download this
    [ a, b, ...rest ]                    // ES6
    { a:4, b:5, ...rest }                // ES6
    
  2. or download this
    [ $a, $b, @rest ]                    # Perl
    { a=>4, b=>5, %rest }                # Perl
    
  3. or download this
    [ a, b, ...[ c, d ] ]                // ES6
    { a:4, b:5, ...{ c:6, d:7 } }        // ES6
    
  4. or download this
    [ $a, $b, [ $c, $d ]->@* ]           # Perl
    { a=>4, b=>5, { c=>6, d=>7 }->%* }   # Perl