Syntax related to Popup Box in Javscript

In JavaScript we can create three kinds of popup boxes: Alert box, Confirm box, and Prompt box. Examples

Alert box: alert("sometext");

Confirm box: confirm("sometext")

Prompt box: prompt("sometext","defaultvalue")