Answers for "javascript best way to get a yes or no from user"

0

how to take yes or no in js

ans = confirm('continue ?');
//returns a boolean response
if (ans){
	//condition returns true...
}
else(){
	//condition returns false...
}
Posted by: Guest on April-19-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language