lambalicious@lemmy.sdf.org to Programmer Humor@programming.devEnglish · 4 days ago[CSS] So I'm learning CSS nowlemmy.sdf.orgimagemessage-square32linkfedilinkarrow-up1388arrow-down112file-text
arrow-up1376arrow-down1image[CSS] So I'm learning CSS nowlemmy.sdf.orglambalicious@lemmy.sdf.org to Programmer Humor@programming.devEnglish · 4 days agomessage-square32linkfedilinkfile-text
minus-squaremaxwells_daemon@lemmy.worldlinkfedilinkEnglisharrow-up55arrow-down2·4 days ago CSS Programmer 🤔
minus-squareDamage@feddit.itlinkfedilinkarrow-up24arrow-down1·4 days agoThat meme format is used for questions where the assumed answer is “no”
minus-squarelambalicious@lemmy.sdf.orgOPlinkfedilinkEnglisharrow-up20arrow-down1·4 days agoHey now, CSS has variables, scopes, conditionals and calc()! The only thing I can’t find is goto.
minus-squareSupervisor194@lemmy.worldlinkfedilinkarrow-up12arrow-down3·4 days agoCSS isn’t a programming language. Programming languages are logical, follow sensible rules and provide consistent output.
minus-squarelambalicious@lemmy.sdf.orgOPlinkfedilinkEnglisharrow-up5·3 days agoGot it, JS is not a programming language then!
minus-squareadminofoz@lemmy.cafelinkfedilinkEnglisharrow-up1·2 hours agoAt least we can all agree about something.
minus-squarefunkless_eck@sh.itjust.workslinkfedilinkarrow-up7arrow-down2·edit-24 days agoObject.is(NaN, NaN); // -> true NaN === NaN; // -> false Object.is(-0, 0); // -> false -0 === 0; // -> true Object.is(NaN, 0 / 0); // -> true NaN === 0 / 0; // -> false !![] // -> true [] == true // -> false !!null; // -> false null == false; // -> false 0 == false; // -> true “” == false; // -> true
minus-squareSpaceNoodle@lemmy.worldlinkfedilinkarrow-up10arrow-down1·4 days agoIf it doesn’t have goto, it’s not a real language
minus-squareAnUnusualRelic@lemmy.worldlinkfedilinkEnglisharrow-up2·3 days ago The only thing I can’t find is goto. There you are then.
🤔
That meme format is used for questions where the assumed answer is “no”
Hey now, CSS has variables, scopes, conditionals and
calc()
! The only thing I can’t find is goto.CSS isn’t a programming language. Programming languages are logical, follow sensible rules and provide consistent output.
malbolge is a programming language
Got it, JS is not a programming language then!
At least we can all agree about something.
Object.is(NaN, NaN); // -> true
NaN === NaN; // -> false
Object.is(-0, 0); // -> false
-0 === 0; // -> true
Object.is(NaN, 0 / 0); // -> true
NaN === 0 / 0; // -> false
!![] // -> true
[] == true // -> false
!!null; // -> false
null == false; // -> false
0 == false; // -> true
“” == false; // -> true
If it doesn’t have
goto
, it’s not a real languageThere you are then.