acreating a function of array from a list javascript code example
Example 1: return array javascript
function func() {
return [5, "string", {a: 7}];
}
Example 2: what are the two ways to create an array in javascript examples?
let scores = new Array();