Answers for "what does this button do"

0

how to use <button>

<!DOCTYPE html>
<script>
function log() {
console.log("Hello World!")
}
</script>
<html>
	<button onclick="log()">Button</button>
</html>
Posted by: Guest on January-15-2022

Code answers related to "what does this button do"

Browse Popular Code Answers by Language