We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1acc188 commit 322c189Copy full SHA for 322c189
src/lambda/hello.js
@@ -2,7 +2,7 @@
2
export function handler(event, context, callback) {
3
console.log('queryStringParameters', event.queryStringParameters)
4
let x = (Math.random(1,100) *100);
5
- const myMsg = 'Hello World, Your number is ' + x;
+ const myMsg = 'Hello Cris, Your number is ' + x;
6
callback(null, {
7
statusCode: 200,
8
body: JSON.stringify({ msg: myMsg }),
0 commit comments