(apologies it’s late here and i was struggling a while…)
can we never use braces in an arrow func?
if i try this with {…} (as is shown i thought in MDN?) it just returns false always, but after many wall head-buttings it works fine without curlies!
myStr.every((val, i)=> val == myStr[myStr.length-i-1] )
not work: myStr.every((val, i)=> {val == myStr[myStr.length-i-1] )}