Answers for "yes sor no js"

8

js alert yes no

if (confirm('Are you sure you want to donate to Andrew Hyder?')) {
  // true (paypal.me/andrewdhyder)
} else {
  // false
}
Posted by: Guest on August-06-2020
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