The URL <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/label" rel="nofollow">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe...</a> is also close to valid code <i>as an expression</i>.<p>Consider something like:<p><pre><code> foo ? https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/label
</code></pre>
I was hoping that was where the post was going with this :)<p>Sadly, JavaScript doesn't have the // operator (floor division) so it doesn't quite work. And double-sadly, I can't think of a language that has all the necessary ingredients; Python uses `and` and `or` for trinary syntax, not ? and :, and besides, you'd need to be able to overload the // operator as unary rather than binary, which ... well, I'm not sure we'd <i>want</i> a language to be able to do that. But I do!<p>Still, if you want to confuse your coworkers, consider sneaking in something like:<p><pre><code> developer = {mozilla: 42}
en = US = docs = web = Web = JavaScript = Reference = Statements = label = 420
console.log(developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/label)
</code></pre>
and be sure to hand in your resignation after pushing the commit.