Answers for "input data from yes or no html js"

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