TEACHERS
GALLERY
PRICING
SIGN IN
TRY ZURU
GET STARTED
Loop
Audio
Interval:
5s
10s
15s
20s
60s
Play
1 of 5
Slide Notes
Download
Go Live
New! Free Haiku Deck for PowerPoint Add-In
Objects
Share
Copy
Download
0
20
Published on Dec 16, 2015
No Description
View Outline
MORE DECKS TO EXPLORE
PRESENTATION OUTLINE
1.
JAVASCRIPT OBJECTS
GROUP 6 FG
Photo by
jurvetson
2.
OBJECTS
Have their own properties
Have methods
May be created with the object constructor
Photo by
Watchcaddy
3.
ACTIVATING AN OBJECT
var tuna="tuna fish"
document.write(tuna.color);
Photo by
Dolor Ipsum
4.
CREATING AN OBJECT
function person (name, age);{
this.name
= name;
this.age = age;
}
Photo by
manuel | MC
5.
ACTIVATING A NEW OBJECT