Hey there, currently I'm diving into a javascript tutorial and exploring ways to display a person's name along with their birthday on this historical day.
<script type="text/javascript">
document.write("Today is <br/>");
document.write(showDate());
document.write("Born Today <br/>");
var name = "mName";
document.write(dayNumber());
var day = "showBirthDay";
document.write(day);
</script>
</section>
I'm scratching my head over how to properly connect this HTML code to the function.js page.
If you have any insights or tips, I'd really appreciate it!