JSFiddle - React, Tailwind, and code Playground

by ClarenceDowns

JavaScript

var car = {
name: "Fiat",
model: "500",
weight: "850kg",
color: "white"
}

var student = {firstName: "Larry", lastName: "Smith", age: "18", schoolYear: "Sophmore",
fullName: function(){
return this.firstName + " " + this.lastName
},
}
console.log(car.name); 
console.log(student.fullName() + " is a student at Daytona State College. He is " + student.age + " years old, and a " + student.schoolYear );