how to make first letter capital in prompt javascript [duplicate]

I’m trying to make a js prompt but I’m having trouble making the first letter capital. Please see attached js code snippet below. Thank you!

var str = prompt("What is your name?").toUpperCase()
document.write("Good morning, " + str + " have a nice day!")