Posts

Find Largest Number with JS

 Find Largest Number with JS JS CODE: console . log (" Hello "); function findLargestNumber ( numbers ) {     b = Math . max ( ... numbers );     return b ;     } arr = [ 9 , 10 , 78 , 2 ]; let largestnum = findLargestNumber ( arr ); console . log ( largestnum );