%%js
var person = {
name: "Tejas",
age: 15,
height: 67,
weight: 183
}
console.log("My name is " + person.name);
console.log("I am " + person.age + " years old.");
console.log("I am " + person.height + " inches tall");
console.log("I am " + person.weight + " pounds");
Lesson 1 Homework • 1 min read
Description
My lesson 1 homework.