From 9b3246e12f174bb7ba4dbafa748dc161f0c191c9 Mon Sep 17 00:00:00 2001 From: ltashiro Date: Tue, 24 Oct 2017 16:39:17 -0700 Subject: [PATCH] Tashiro Student and Instructors.js --- Tashiro/TashiroStudentsandinstructors.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Tashiro/TashiroStudentsandinstructors.js diff --git a/Tashiro/TashiroStudentsandinstructors.js b/Tashiro/TashiroStudentsandinstructors.js new file mode 100644 index 0000000..0f4431b --- /dev/null +++ b/Tashiro/TashiroStudentsandinstructors.js @@ -0,0 +1,12 @@ +var students = [ + {first_name: 'Michael', last_name : 'Jordan'}, + {first_name : 'John', last_name : 'Rosales'}, + {first_name : 'Mark', last_name : 'Guillen'}, + {first_name : 'KB', last_name : 'Tonel'} +] + + +for (var i=0; i<4; i++) +{ +console.log(students[i].first_name+" "+students[i].last_name); +} \ No newline at end of file