﻿function confirmation() {
    var answer = confirm("You sure you want to delete this product?")
    if (answer) {
       
       
    }
    else {
        alert("Thanks for sticking around!")
    }
}

