Skip to content

Commit

Permalink
Update app.js to display 3 emojis
Browse files Browse the repository at this point in the history
  • Loading branch information
katiexzhang authored Mar 27, 2024
1 parent 291540e commit e774aca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ app.get('/health', (req, res) => {
app.get('/', (req, res) => {
const name = process.env.NAME || 'World';
const emoji = process.env.EMOJI || ':)';
res.send(`Hello ${name}! ${emoji}`);
res.send(`Hello ${name}! ${emoji} ${emoji} ${emoji}`);
});

0 comments on commit e774aca

Please sign in to comment.