Handshake

in ita •  26 days ago 

export const commands = (numb) => {
let result = [];
if(numb & 1) result.push('wink');
if(numb & 2) result.push('double blink');
if(numb & 4) result.push('close your eyes');
if(numb & 8) result.push('jump');
if(numb & 16) result.reverse();
return result;
};

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!