Write Your JavaScript Code Here

// Array :- It is collection more the single value inside an variable // Array.of():Create an array for different number of argument const arr1=Array.of(1,2,3,4,"mayur"); console.log(arr1); console.log(typeof(arr1));

Output: