1
1
mirror of https://github.com/github/semantic.git synced 2024-11-29 02:44:36 +03:00

Semicolons.

This commit is contained in:
Rob Rix 2015-10-13 10:16:54 -04:00
parent 80c0443820
commit b3c4daf904

View File

@ -31,13 +31,13 @@
function toDOM(json) {
if (json instanceof Array) {
console.log("it's an array")
console.log("it's an array");
for (index in json) {
console.log(json[index])
console.log(json[index]);
}
} else if (json instanceof Object) {
for (key in json) {
console.log(key)
console.log(key);
}
}
}