“js waspada ya tidak” Kode Jawaban

JavaScript Konfirmasi Ya Tidak

var proceed = confirm("Are you sure you want to proceed?");
if (proceed) {
  //proceed
} else {
  //don't proceed
}
Scriper

js waspada ya tidak

if (confirm('Are you sure you want to donate to Andrew Hyder?')) {
  // true (paypal.me/andrewdhyder)
} else {
  // false
}
Poised Penguin

Opsi JavaScript Ya/Tidak Popup

if (confirm('Are you sure you want to save this thing into the database?')) {
  // Save it!
  console.log('Thing was saved to the database.');
} else {
  // Do nothing!
  console.log('Thing was not saved to the database.');
}
Charming Cicada

javascript prompt ya/tidak

var answer = window.confirm("Save data?");
if (answer) {
    //some code
}
else {
    //some code
}
Blushing Bug

bagaimana mengambil ya atau tidak di js

ans = confirm('continue ?');
//returns a boolean response
if (ans){
	//condition returns true...
}
else(){
	//condition returns false...
}
Inquisitive Iguana

JavaScript Konfirmasi Ya Tidak

let proceed = confirm("Are you sure you want to proceed?");
if (proceed) {
  //proceed
} else {
  //don't proceed
}
effset

Jawaban yang mirip dengan “js waspada ya tidak”

Pertanyaan yang mirip dengan “js waspada ya tidak”

Lebih banyak jawaban terkait untuk “js waspada ya tidak” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya