From 21a4a75a294a13ff75bc7c6f1b7443eee96a46bc Mon Sep 17 00:00:00 2001 From: shuked Date: Sun, 19 Sep 2021 22:56:59 +0300 Subject: [PATCH 1/4] added students-array.js --- students-array.js | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 students-array.js diff --git a/students-array.js b/students-array.js new file mode 100644 index 0000000..e69de29 From 75671157c1febf81e4a3f4ae34f0c674e634c23b Mon Sep 17 00:00:00 2001 From: shuked Date: Sun, 19 Sep 2021 23:17:15 +0300 Subject: [PATCH 2/4] added array students in students-array.js --- students-array.js | 72 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/students-array.js b/students-array.js index e69de29..3ec78f7 100644 --- a/students-array.js +++ b/students-array.js @@ -0,0 +1,72 @@ +const students = [ + { + name: "Shaked Shaul", + mail: "shukeds@gmail.com", + cvFile: "/shaked-shaul/cv.html" + }, + { + name: "Matan Vilensky", + mail: "matanv@gmail.com", + cvFile: "/matan-vilensky/matan-cv.html" + }, + { + name: "Omri Dadon", + mail: "omridadon@gmail.com", + cvFile: "/omri-dadon/CV.html" + }, + { + name: "Ortal Tsarfati", + mail: "ortalts89@gmail.com", + cvFile: "/ortal/cv.html" + }, + { + name: "Alex", + mail: "sashaa1819@gmail.com", + cvFile: "?" + }, + { + name: "Maor Lachish", + mail: "mlachish1@gmail.com/", + cvFile: "/maor-lachish/cv.html" + }, + { + name: "Alon Saban", + mail: "Alonsaban3@gmail.com", + cvFile: "/AlonSaban/cv.html" + }, + { + name: "Liron Shushan", + mail: "liron08648@gmail.com", + cvFile: "?" + }, + { + name: "Yasmin Bordiny", + mail: "bordiny@gmail.com", + cvFile: "?" + }, + { + name: "Nadav Shlomi", + mail: "NadavSSS@gmail.com", + cvFile: "?" + }, + { + name: "Ben Vered", + mail: "ben.vered@gmail.com", + cvFile: "?" + }, + { + name: "Erez Vaknin", + mail: "erezva86@gmail.com", + cvFile: "?" + }, + { + name: "Yehuda Or", + mail: "yudaor252@gmail.com", + cvFile: "?" + }, + { + name: "David Levy", + mail: "david@davidlevy.co.il", + cvFile: "/david-levy/cv.html" + }, +] \ No newline at end of file From 093712cc1650f3eb9312a1636202b3ebddac17ed Mon Sep 17 00:00:00 2001 From: shuked Date: Sun, 26 Sep 2021 12:05:53 +0300 Subject: [PATCH 3/4] added export statement --- students-array.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/students-array.js b/students-array.js index 3ec78f7..2942bf3 100644 --- a/students-array.js +++ b/students-array.js @@ -1,4 +1,4 @@ -const students = [ +export const students = [ { name: "Shaked Shaul", mail: "shukeds@gmail.com", From 8467091d24725f08a53b2c538cab61ac2505aa57 Mon Sep 17 00:00:00 2001 From: shuked Date: Sun, 26 Sep 2021 12:12:30 +0300 Subject: [PATCH 4/4] change students-array.js name to students.js --- students-array.js => students.js | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename students-array.js => students.js (100%) diff --git a/students-array.js b/students.js similarity index 100% rename from students-array.js rename to students.js