spray icon indicating copy to clipboard operation
spray copied to clipboard

Useless piece of code?

Open 4skinSkywalker opened this issue 9 years ago • 0 comments

if((length % 2) === 0){ start = word.slice(0, word.length/2); end = word.slice(word.length/2, word.length); } else{ start = word.slice(0, word.length/2); end = word.slice(word.length/2, word.length); }

This is an if clause where both chance are the same...?

4skinSkywalker avatar Jan 20 '17 19:01 4skinSkywalker