JS practice-2(Array&Object)

Run Settings
LanguageJavaScript
Language Version
Run Command
//Arrays let hanaArray = [4.5, "Daria", 18, false]; console.log(hanaArray); console.log(hanaArray[0]); console.log("The length of hanaArray is " + hanaArray.length + "."); //objects let object = {key1:"value1", key2: "value2"}; let user = { name: { first: "Daria", last: "Morgendorffer", }, age: 19, school: "Lawndale High School" }; console.log("Hi!, my name is " + user.name.first + " " + user.name.last + "," + " I'm " + user.age + " years old" + "."); console.log("I'm a student at " + user.school);
Editor Settings
Theme
Key bindings
Full width
Lines