Skip to content

Commit 73b2194

Browse files
authored
Merge pull request #2 from abelstor/abel-dev
fix/html tag h3-result
2 parents 9749110 + 7a36e75 commit 73b2194

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ <h3 id="result"></h3>
4646
let num1 = document.getElementById('num-1').value;
4747
let num2 = document.getElementById('num-2').value;
4848
let result = parseInt(num1) + parseInt(num2);
49-
document.getElementById('result').innerHTML = `Rresult is: <span>${result}</span>`;
49+
document.getElementById('result').innerHTML = `The result is: <span>${result}</span>, cool! 🎉`;
5050
})
5151
</script>
5252

0 commit comments

Comments
 (0)