How to Print “Hello World” without Using Letters h, e, l, o in JavaScript

A high-level code challenge.

Shuai Li

--

We all started learning programming by printing “Hello World”.

console.log("Hello World")

But now, we want to do something unusual: As the title mentioned, can you print “Hello World” without using letters like h, e, l, or o?

--

--