A lot of times we need to fix the code styling in legacy projects.

Apply necessary changes and make sure all the variables names are written in camelCase.

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

/**
 * A lot of times we need to fix the code styling in legacy projects.
 *
 * Make sure all the variables names are written in camelCase.
 * */

let welcome_message = "Hello!";
let CodingSchedule = "24/7";
let IS_WATCHER_ENABLED = true;
let salary = 300000;