What is person ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 5

What is person ?

person is object or not

27th Oct 2017, 1:14 PM
Sonam Tamrakar
Sonam Tamrakar - avatar
1 Answer
+ 7
Context for Q&A...In Q&A it isn't always clear these questions are from Lessons. Context at the Lesson*: -------------------- [Objects are like]... a list of values that are written as name:value pairs, with the names and the values separated by colons. var person = { name : "John", age : 31, ... } -------------------- Here, the var and { } tell you you're working with an object (named 'person'), as opposed to something else, like a function. The key:value pairs are just "variables" the object wraps. * Javascript | Objects (Section 5) | Introducing Objects (Panel 1) | first code sample
27th Oct 2017, 1:51 PM
Kirk Schafer
Kirk Schafer - avatar