Skip to content
Snippets Groups Projects
Commit 583b0437 authored by Maz Ameli's avatar Maz Ameli
Browse files

Change == to === in greeting.js

parent fad3e044
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ var Greeting = {
sayHello: function(personalization) {
if(personalization) {
var g = Greeting.simpleGreeting();
if (g == 'How\'s it going,'){
if (g === 'How\'s it going,'){
return g + ' ' + personalization + '?';
} else {
return g + ' ' + personalization;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment