October 1st, 2024
What's missing in this code?
shiftToLeft(1, 0); // 1
shiftToLeft(1, 1); // 2
shiftToLeft(1, 3); // 8
shiftToLeft(2, 2); // 8
shiftToLeft(3, 1); // 6
shiftToLeft(5, 5); // 160
shiftToLeft(10, 3); // 80
shiftToLeft(0, 10); // 0
function shiftToLeft(x, y) {
return y ?
(x * 2,
) :
;
}
Type or select from these options