Take a look at how the variable “m” is created and initialized with the value 5.

Create a variable “n” and initialize it with the number 10.

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

solution.js

/**
 * Take a look at how the variable "m" is created and initialised with the value 5.
 *
 * Create a variable "n" and initialize it with the number 10.
 * */

let m = 5;