Confirm boxes are the third dialogue box after alert() and prompt(). They return a true false value.
function cf() {
let certain = confirm("are you sure about this?");
if (certain === true) {
alert("you are either:\nvery brave or completely mad");
}
else {
alert("Take the sensible option\nYou can't be too careful");
}
}