8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
"c"
According to the docs:
c - converts the integer to the corresponding unicode character before printing
In my code,
console.log(format("c")(97));
Just prints 97. I was expecting something along the lines of python:
>>> chr(97) 'a'