ZHANYI
Results
1
comments of
ZHANYI
trafficstars
```js const str = ' go od '; function fun(str, position) { let newStr; const len = str.length; switch (position) { case 'left': newStr = str.slice(1); break; case 'right': newStr...