C? lmao just use javascript

>c? lmao just use javascript.

Attached: 65d.png (434x327, 32K)

Other urls found in this thread:

lmgtfy.com/?q=falsy truthy javascript
twitter.com/SFWRedditVideos

Welcome to Node.js v12.4.0.
Type ".help" for more information.
> 0 == "0"
true
> 0 == []
true
> "0" == []
false
> 0 == ""
true
> "" == []
true

>===

fixed :)

imagine being too retarded to read the docs
lmgtfy.com/?q=falsy truthy javascript

imagine having to bolt on an extra = to fix your shitty language

it's almost like semantics were left up to the language designers

imagine being so obese the effort of typing another = makes you out of breath you fucking fat piece of shit

Other languages have worse stupid shit.

Take java
String a = "a";
String a2 = "a";
System.out.println(a == a2); //true

String ab = "ab";
String a_ = ab.substring(0,1); // "a"
System.out.println(a_ == a); //false
System.out.println(a_ == a2); //false


wew kid. Go dilate

The zoomer who outright rejects C in favor of JavaScript is a scapegoat Cniles created to keep pushing C, same with Rust.
No one but them ever gives a shit.

This

Also does anyone have that Java example where small integers are equal but larger aren't because of cache?