Skip to content

Commit 73bccb9

Browse files
committed
feat(JS): replace data.join(' ') by data.join('') as this was adding white space
1 parent 572da3d commit 73bccb9

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
@@ -74,7 +74,7 @@ function canUserAddDot(button) {
7474
}
7575
data.push(".");
7676
}
77-
screen.innerText = data.join(" ");
77+
screen.innerText = data.join("");
7878
}
7979
}
8080

0 commit comments

Comments
 (0)