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