lambalicious@lemmy.sdf.org to Programmer Humor@programming.devEnglish · 3 months ago[CSS] So I'm learning CSS nowlemmy.sdf.orgexternal-linkmessage-square28fedilinkarrow-up1242arrow-down16file-text
arrow-up1236arrow-down1external-link[CSS] So I'm learning CSS nowlemmy.sdf.orglambalicious@lemmy.sdf.org to Programmer Humor@programming.devEnglish · 3 months agomessage-square28fedilinkfile-text
minus-squaremaxwells_daemon@lemmy.worldlinkfedilinkEnglisharrow-up37arrow-down1·3 months ago CSS Programmer 🤔
minus-squareDamage@feddit.itlinkfedilinkarrow-up8·3 months agoThat meme format is used for questions where the assumed answer is “no”
minus-squarelambalicious@lemmy.sdf.orgOPlinkfedilinkEnglisharrow-up13arrow-down1·3 months agoHey now, CSS has variables, scopes, conditionals and calc()! The only thing I can’t find is goto.
minus-squareSupervisor194@lemmy.worldlinkfedilinkarrow-up7arrow-down1·3 months agoCSS isn’t a programming language. Programming languages are logical, follow sensible rules and provide consistent output.
minus-squarelambalicious@lemmy.sdf.orgOPlinkfedilinkEnglisharrow-up4·3 months agoGot it, JS is not a programming language then!
minus-squareadminofoz@lemmy.cafelinkfedilinkEnglisharrow-up2·3 months agoAt least we can all agree about something.
minus-squarefunkless_eck@sh.itjust.workslinkfedilinkarrow-up3·edit-23 months 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-squarelime!@feddit.nulinkfedilinkEnglisharrow-up2·3 months agomalbolge is a programming language
minus-squareSpaceNoodle@lemmy.worldlinkfedilinkarrow-up4·3 months agoIf it doesn’t have goto, it’s not a real language
🤔
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.
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
malbolge is a programming language
If it doesn’t have
goto, it’s not a real language