Difference between revisions of "Operators"

From rbachwiki
Jump to navigation Jump to search
(Created page with "==Spread Operator == ''' Expands elements of an array ''' function addFourAges(a,b,c,d){ return a+b+c+d; }; var sum1 = addFourAges(18,19,20,21); ==Back To Top-[...")
 
Line 1: Line 1:
==Spread Operator ==
==Spread Operator ==
''' Expands elements of an array '''
''' Expands elements of an array '''
function addFourAges(a,b,c,d){
return a+b+c+d;
};
var sum1 = addFourAges(18,19,20,21);


==[[#top|Back To Top]]-[[Main_Page| Home]] - [[Java Script|Category]]==
==[[#top|Back To Top]]-[[Main_Page| Home]] - [[Java Script|Category]]==

Revision as of 16:13, 2 December 2016

Spread Operator

Expands elements of an array

Back To Top- Home - Category