Quick actions

cmd+k|ctrl+k

Navigation

Languages

Switch case with logic

Snippet info

Language

JavaScript

Visibility

public

Author

ubaidillah.hf

Created

2021-10-15T11:56:14.912131Z

Updated

2021-10-15T11:56:14.912131Z

function test(n){
    switch(true){
        case(n<5): console.log("oke")
        break;
        case(n>5): console.log("sip")
        break;
        default: console.log("def")
    }
}

test(2);
INFO