Skip to content

Commit c4272b5

Browse files
committed
feat(CSS): add space to computations using join(' ')
1 parent 00690d4 commit c4272b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ function userClicksOnEqualButton(button) {
222222
console.log(entry);
223223
history.push(entry);
224224
console.log(history);
225-
historyElement.innerHTML += `<li>${entry.join("")}</li>`
225+
historyElement.innerHTML += `<li>${entry.join(" ")}</li>`
226226
});
227227

228228
}

0 commit comments

Comments
 (0)