-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstudents.js
More file actions
33 lines (33 loc) · 706 Bytes
/
students.js
File metadata and controls
33 lines (33 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
const students = [
"Andrew Rice",
"Catherine Pham",
"Auri Robbins-Phillips",
"Benjamin Vaagen",
"Bryan Kelley",
"Delbert Hall",
"Derek Ericson",
"Gabriel Teotonio",
"Joonwoo Choi",
"Joshua Manuel",
"Julie Mathews",
"Justin Graffeo",
"Kelsey Beffel",
"Lacey Gibbons",
"Lisa Leslie",
"Mario Rodriguez",
"Naomi Woodruff",
"Nicole White",
"Peter Staker",
"Shannon Line",
"Sonja Rasmussen",
"Stefan Apreutesei",
"Tad Ochwat",
"Tammy Lee",
"Thomas Sulich",
"Ethan Mo",
"Yin Lee"
];
// module is a commonjs thing, so without it we assume this file is being loaded by a script tag in the browser.
if (module && module.exports) {
module.exports = students;
}