I have this javascript function and I want to alert 12, 24, 36 ... and so on in the multiples of 12 . I have attached the code below
<script type="text/javascript">
    function test() {
        var global1=12;
        var final;
        var check;
        if(check) {
            final=global1;
            check=true;
        } else {
            final=final+12;
        }
        alert(final);
    }
    test();
    test();
    test();
</script>
 
     
     
     
    