Creates the Text in the Notes

PHOTO EMBED

Tue Jun 06 2023 15:43:24 GMT+0000 (Coordinated Universal Time)

Saved by @Vkmartinez95 #javascript #innerhtml #button #onclick #html

<!DOCTYPE html>
<html>
<body>

<h2>Practicing HTML</h2>
<h3>My JavaScript Lesson</h3>

<p>You can use document.write to calculate numbers and add words in to fill in the information outside of it.</p>

<script>
document.write(176 + 323 + " have officially rsvp'd, " + 325 * 3 + " people have indicated possibly rsvping. Another " + 34 + " haven't responded.");
</script>

</body>
</html> 
content_copyCOPY

# Practicing JavaScript ## My JavaScript Lesson You can use document.write to calculate numbers and add words in to fill in the information outside of it. 499 have officially rsvp'd, 975 people have indicated possibly rsvping. Another 34 haven't responded.