Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.

    GIF shows where to locate </> in the thread and or post editor toolbar.
    To learn more about how to use our BBCode feature, review our "How to post your code into threads" here.

    Thank you, Code Forum.

JavaScript Greeting with day of the week

Why is this JS not showing the appropriate greeting? I'm new to this, but I thought the getDay() would result in 0-6, with 0 and 6 being weekend, resulting in the appropriate greeting. Thank you!
JavaScript:
<p id="weekday"></p>
<script>
const day = new Date().getDay();
let greeting;

if (day = 0) {
  greeting = "Happy Weekend";
} else if (day = 6) {
  greeting = "Happy Weekend";
} else {
  greeting = "Happy Weekday";
}
document.getElementById("weekday").innerHTML = greeting;
</script>
 
Perhaps the most common beginning programmer's mistake is using = (which is an assignment) instead of == (which is a comparison). For example the expression day = 6 assigns six to day, and returns 6 as the result, so that if (day = 6) always yields true, whatever the value assigned.
I would suggest using a switch statement instead of a cascade of if's.

Edit:
You would have seen the problem had you pressed F12 and looked in the console output, where it says
Uncaught TypeError: Assignment to constant variable.
Because day is defined as const, and the statement if (day = 0) tries to assign the value zero to it, as explained above.

Advice: Whenever some JS does not work as (you think) it should, press F12 and check the console output.
 
Last edited by a moderator:
You can reduce the amount of code you have by using || which means 'or'.
So like, if day = 0 or day = 6, then say happy weekend:
JavaScript:
<p id="weekday"></p>
<script>
const day = new Date().getDay();
let greeting;

if (day == 0 || day == 6) {
  greeting = "Happy Weekend";
} else {
  greeting = "Happy Weekday";
}
document.getElementById("weekday").innerHTML = greeting;
</script>
 

Buy us a coffee!

Buy me a coffee.
Back
Top Bottom