Jelajahi Sumber

Fix to 06 Union Object

pocu46 4 tahun lalu
induk
melakukan
11209de0c9
3 mengubah file dengan 46 tambahan dan 28 penghapusan
  1. 30 15
      05/script.js
  2. 15 13
      06/script.js
  3. 1 0
      Pre-React/myproject

+ 30 - 15
05/script.js

@@ -17,23 +17,23 @@
 
 // ------------------------------different fields----------------------------------------------
 
-// let a = {
-//     name: "Victor",
-//     surname: "Basharov",
-//     age: 35
-// }
+let a = {
+    name: "Victor",
+    surname: "Basharov",
+    age: 35
+}
 
-// let b = {
-//     name: "Dmitriy",
-//     surname: "Ivanov",
-//     fathername: "Alexandrovich"
-// }
+let b = {
+    name: "Dmitriy",
+    surname: "Ivanov",
+    fathername: "Alexandrovich"
+}
 
-// let c = {
-//     name: "John",
-//     surname: "Doe",
-//     sex: "Male"
-// }
+let c = {
+    name: "John",
+    surname: "Doe",
+    sex: "Male"
+}
 
 // ------------------------------fields check----------------------------------------------
 
@@ -57,3 +57,18 @@
 
 // ------------------------------array of persons----------------------------------------------
 
+let persons = [ a, b, c];
+
+let car = {
+    factory: "Ford", 
+    model: "GT", 
+    model: "40"
+};
+
+persons[3] = car;
+
+// ------------------------------loop of persons----------------------------------------------
+
+for(let i of persons) {
+    console.log(persons[i])
+}

+ 15 - 13
06/script.js

@@ -62,14 +62,16 @@ function sum3(num1, num2, num3) {
 //     return num;
 // }
 
-function intRandom(min, max) {
+function intRandom(min, max=0) {
 
-    if(max != prompt) {
-        max = min;
-        min = 0;
+    let num;
+
+    if(max === 0) {
+        num = max + Math.random() * (min - max);
+    } else {
+        num = min + Math.random() * (max - min);
     }
 
-    let num = min - 0.5 + Math.random() * (max - min + 1);
     return Math.round(num);
 }
 
@@ -131,19 +133,19 @@ function sum() {
 // --------------------------------------------Union declarative--------------------------------------------------------------
 
 let taskNames = {
-    "a": a,
-    "cube": cube,
-    "avg2": avg2,                                         // Doesn't work for now
-    "sum3": sum3,
-    "intrandom": intRandom,
-    "greetAll": greetingsAll,
-    "sum": sum
+    "a": () => a("Hello Stranger"),
+    "cube": () => alert(cube(3)),
+    "avg2": () => alert(avg2(+prompt("Enter first digit"), +prompt("Enter second digit"))),                                     
+    "sum3": () => alert(sum3(+prompt("Enter first digit"), +prompt("Enter second digit"), +prompt("Enter third digit"))),
+    "intrandom": () => alert(intRandom(+prompt("Enter Min value"), +prompt("Enter Max value"))),
+    "greetAll": () => greetingsAll("Sam", "Dean", "Jonathan"),
+    "sum": () => alert(sum(10, 25, 33, 46, 56))
 }
 
 let taskToStart = prompt("Введите название задания");
 
 for(let key in taskNames) {
     if(key === taskToStart) {
-        alert(key);
+        alert(taskNames[key]());
     }
 }

+ 1 - 0
Pre-React/myproject

@@ -0,0 +1 @@
+Subproject commit 7db34bdb31b508b75e5cd0983789edc96d38cc5b