Find the exact combination of browser/OS that does more than show "return true to win" on a white background to win.
> Find the exact combination of browser/OS that does more than show "return true to win" on a white background to win. I see: return true to win (Come back in a few minutes.) What do I win?
Return True to Win
51–60 of 123 posts
Re: Return True to Win
#52Please more levels
Re: Return True to Win
#53Does anybody really know why JS's type system was designed the way it was? It seems so out of whack with what people want out of a language, dynamically typed or otherwise.
Re: Return True to Win
#54This table is quite useful to solve some problems: https://dorey.github.io/JavaScript-Equality-Table/
NaN === Nan // => false
[] === [] // => false
{} === {} // => false
[1] === [1] // => false
[0] === [0] // => false
I guess i never see the gains in the triple vs double equal sign wars.Re: Return True to Win
#55This table is quite useful to solve some problems: https://dorey.github.io/JavaScript-Equality-Table/
> Moral of the story: Always use 3 equals unless you have a good reason to use 2. NaN === Nan // => false [] === [] // => false {} === {} // => false [1] === [1] // => false [0] === [0] // => false I guess i never see the gains in the triple vs double equal sign wars.
Re: Return True to Win
#56Re: Return True to Win
#57Re: Return True to Win
#58The game shows us how ugly JS is.
Re: Return True to Win
#59Does someone have a <52 char solution for the counter one ?
function(c=1){return function(){return c++}}
44 charactersRe: Return True to Win
#60Does someone have a <52 char solution for the counter one ?