forked from learn-co-curriculum/js-basics-variables-lab
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
16 lines (9 loc) · 796 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code your solution in this file!
// Declare a constant variable named organizationName and assign it the value "Acme Corp"
// Declare a variable named mostLucrativeDistrict and assign it the value "Downtown"
// Declare a variable named CEO and assign it the value "John Doe"
// Declare the variables stringVar, numberVar, booleanVar, nullVar, and undefinedVar following the instructions in the README
// Declare a variable with `const` named myArray and assign it an array with different data types
// The array should have at least 3 elements and the elements should be of different data types
// Declare a variable with `const` named myObject and assign it an object with different key-value pairs
// Reassign a new value to `mostLucrativeDistrict` with the value of "Hell's Kitchen"