Skip to content

Instantly share code, notes, and snippets.

View Docwali777's full-sized avatar

Wali Gauvin Docwali777

  • Woodbridge, Virginia
View GitHub Profile
@Docwali777
Docwali777 / .block
Created January 23, 2017 02:56
Force Layout Graph - National Contiguity
license: mit
@Docwali777
Docwali777 / JSON cars
Created August 5, 2016 03:20
practice cars JSON
var objD = {
"car1": {
"make": "Mazada",
"model": "CX5",
"year": "2016",
"driver": {"firstname": "Wali", "lastname": "Gauvin"}
}, "car2":
{"make": "Nissan",
"model": "Juke",
"year": "2015",
confirm("Yep Yep");
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];
}
}