isconfirm sweetalert code example

Example 1: sweet alert

<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>

Example 2: confirm sweet alert

swal("Are you sure?", {  dangerMode: true,  buttons: true,});

Example 3: return confirm sweet alert

swal({  title: "Are you sure?",  text: "Once deleted, you will not be able to recover this imaginary file!",  icon: "warning",  buttons: true,  dangerMode: true,}).then((willDelete) => {  if (willDelete) {    swal("Poof! Your imaginary file has been deleted!", {      icon: "success",    });  } else {    swal("Your imaginary file is safe!");  }});

Example 4: swal

swal("Good job!", "You clicked the button!", "success");