This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | license: mit | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | var objD = { | |
| "car1": { | |
| "make": "Mazada", | |
| "model": "CX5", | |
| "year": "2016", | |
| "driver": {"firstname": "Wali", "lastname": "Gauvin"} | |
| }, "car2": | |
| {"make": "Nissan", | |
| "model": "Juke", | |
| "year": "2015", | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | confirm("Yep Yep"); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | function multiplyAll(arr) { | |
| var product = 1; | |
| // Only change code below this line | |
| for (var i=0; i < arr.length; i++ ) | |
| { | |
| for (var j=0; j < arr[i].length; j++) | |
| { | |
| product *= arr[i][j]; | |
| } | |
| } |