5 lines
58 B
JavaScript
5 lines
58 B
JavaScript
|
|
function test(b) {
|
||
|
|
return 2147483648 >> b;
|
||
|
|
}
|
||
|
|
test(1);
|