Schal330@lemmy.world to Programmer Humor@programming.dev · 3 months agoIt must be a silent Rlemmy.worldimagemessage-square125fedilinkarrow-up1866arrow-down132
arrow-up1834arrow-down1imageIt must be a silent Rlemmy.worldSchal330@lemmy.world to Programmer Humor@programming.dev · 3 months agomessage-square125fedilink
minus-squarecypherix93@lemmy.worldlinkfedilinkEnglisharrow-up11·3 months ago"strawberry".split('').filter(c => c === 'r').length
minus-squareSpaceNoodle@lemmy.worldlinkfedilinkarrow-up8·3 months agolen([c if c == ‘r’ for c in “strawberry”])
minus-squareTiefling IRL@lemmy.blahaj.zonelinkfedilinkarrow-up6·3 months ago'strawberry'.match(/r/ig).length
minus-squareanti-idpol action@programming.devlinkfedilinkarrow-up1·2 months ago(\r (frequencies “strawberry”))
minus-squareAwkwardLookMonkeyPuppet@lemmy.worldlinkfedilinkEnglisharrow-up1arrow-down2·3 months agodeleted by creator
minus-squareSluyter548@lemmy.worldlinkfedilinkarrow-up2·3 months agoA zero indexed array doesn’t have a different length ;)
"strawberry".split('').filter(c => c === 'r').length
len([c if c == ‘r’ for c in “strawberry”])
deleted by creator
'strawberry'.match(/r/ig).length
(\r (frequencies “strawberry”))
deleted by creator
A zero indexed array doesn’t have a different length ;)