В вашем коде была опечатка. Для назначения это должно быть g1 =
и неg1 ==
var ans;
var b1;
var g1;
ans = prompt("How are you feeling?
'B' for Bad | 'G' for Good");
if (ans == 'B') {
b1 = prompt("I'm sorry ... 'W'.
If not, type 'E'");
if (b1 == 'W') {
window.alert("Work sucks ....");
} else if (b1 == 'E') {
window.alert("Here's ..");
}
} else if (ans == 'G') {
g1 = prompt("That's great! I hope you have a fantastic day ahead!
'C' to Continue | 'R' to Exit");
if (g1 == 'C') {
window.alert("...");
} else if (g1 == 'R') {
window.alert("Goodbye. Have a lovely day!");
}
}