links · comments · yuulye.github.io
NaN is the only JavaScript value that is not equal to itself ” ― 2ality

A Piece of Code · output · codes
/* SoloLearn.com - JavaScript Challenge
 * by brains */

var x = NaN;
var y = x;
if (x === y)
    console.log(true);
else console.log(false);

//-----------------------------

console.log(x, typeof x, y, typeof y, x === y);

a = 0;
b = a;
console.log(a, typeof a, b, typeof b, a === b);

a = Infinity;
b = a;
console.log(a, typeof a, b, typeof b, a === b);

2019 06/22 · 50 Shades of PHP
PHP is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML. But, PHP itself is an acronym, not usual acronym though, recursive! ...more

2019 06/13 · My First Artificial Intelligence
Artificial intelligence (AI) is the simulation of human intelligence processes by machines, especially computer systems. After a while, I finally made the Tic Tac Toe game here playable for single player, check it out! ...more

2019 06/14 · How This Site Appears
Designing this site is a lot of fun. I tried to make this site appears as the best it can for multiple clients like terminal based web browser, mobile browsers, and desktop. See how this site is shown for those platforms. ...more

2017 12/26 · Snow
I wonder if the snow loves the trees and fields, that it kisses them so gently? And then it covers them up snug, you know, with a white quilt; and perhaps it says, "Go to sleep, darlings, till the summer comes again." ...more

2017 12/08 · Web Named Colors
White, Black, Red, Yellow, Green, Blue. Those are names that You can use in your css value. But do You know that there are more color names? ...more

2017 12/07 · Playing Card
Simple puzzle game based on real playing card. No image load, so this should be fast and lightweight. Generated using html entities and JavaScript. Can you solve it? ...more

2017 12/02 · Tic Tac Toe
So You know about HTML, CSS and JavaScript? Want to build something with them? Those three web technologies can be used to create a web page. Have You done that? Want something more? How about creating a simple Tic Tac Toe game? This post explains how I build Tic Tac Toe Game In 3 simple steps ...more

Message ·