Emailの値を受け取り、Email変数を別の関数Email()に渡す必要があるプロンプトダイアログボックスがあります。これが私のコードです。
function promptMessage() {
public var Email = prompt("Enter your Email :", "");
}
function Email(){
alert("Email Address is " +Email); //Email from promptMessage() function
}