vscode
themes
Trending
·
Dark
·
Light
mox-dark
javascript
css
html
const btn = document.getElementById(
'btn'
)
let count = 0
function render() {
btn.innerText =
`Count: ${
count
}`
}
btn.addEventListener(
'click'
, () => {
// Count from 1 to 10.
if (count < 10) {
count += 1
render()
}
})
191
mox-classic
javascript
css
html
const btn = document.getElementById(
'btn'
)
let count = 0
function render() {
btn.innerText =
`Count: ${
count
}`
}
btn.addEventListener(
'click'
, () => {
// Count from 1 to 10.
if (count < 10) {
count += 1
render()
}
})
191
Moxie.Build
by Cnawlece
Provides code snippets, color themes, syntax recognition and more for the Mox programming language.
Open in VSCode
View on Github