Minor typo: resonce replaced by reponse (#34677)

Change in line #19 replacing `resonse` by `response`
This commit is contained in:
Yoelvis Jiménez
2019-01-15 17:47:35 -04:00
committed by Tom
parent dac5ea57f4
commit 834b2dc9e8

View File

@ -16,7 +16,7 @@ All we need to do now is check what the value of the environment variable is, wh
```javascript
if (process.env.VAR_NAME === "allCaps") {
resonse = "Hello World".toUpperCase();
response = "Hello World".toUpperCase();
} else {
response = "Hello World";
}