Javascript
Getting Started with Deno — Hands On

Hello, World! Solution

Mute
Current Time 0:00
/
Duration Time 0:00
Loaded: 0%
Progress: 0%
Stream TypeLIVE
Remaining Time -0:00
 
PRO

This assignment required you to log a "Hello, world" message to the console. Here's how you can do this in TypeScript or JavaScript:

// hello-world.ts

console.log('Hello, world!');

To run the script, you use the following command:

deno run  hello-world.ts
 

I finished! On to the next chapter