In this chapter whenever according to the chapter {https://www.codecademy.com/courses/learn-javascript/lessons/control-flow/exercises/comparison-operators-ii?action=lesson_resume&link_content_target=interstitial_undefined}
here it was always if statement run whether i change the value from full to any other like half or any other string but its o/p always shows “Howllll!!!” but i can’t run the else statement. pls suggest some instructions so i can run the else part here is my code::
var moonPhase = “full”;
if (moonPhase = “full”) {
console.log(“Howwwwlll!!!”);
} else {
console.log(“I swear I am not a warewolf…”);
}