how to take input in javascript in coding

JavaScript
In JavaScript, we can get user input like this: 
var name = window.prompt("Enter your name: "); 
alert("Your name is " + name);
Source

Also in JavaScript: