function name(params,p) {
    var RTRN;
    switch (params%p) {
        case 0:
            RTRN = 1;
            break
        default:
            RTRN = 0;
            break
    }
    return RTRN
}

console.log(RTRN(2));

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: