fix(curriculum): Shopping List Workshop - add space in function declaration (#56501)

This commit is contained in:
Ritesh S Hiremath
2024-10-09 19:59:45 +05:30
committed by GitHub
parent 05d803630b
commit 4d78206076
6 changed files with 6 additions and 6 deletions
@@ -32,7 +32,7 @@ console.log("It will be nice to have some fruit to eat.");
shoppingList.push("Apples");
function getShoppingListMsg(){
function getShoppingListMsg() {
return `Current Shopping List: ${shoppingList}`;
}
@@ -43,7 +43,7 @@ const shoppingList = [];
console.log("It will be nice to have some fruit to eat.");
shoppingList.push("Apples");
function getShoppingListMsg(){
function getShoppingListMsg() {
return `Current Shopping List: ${shoppingList}`;
}
@@ -30,7 +30,7 @@ console.log("It will be nice to have some fruit to eat.");
shoppingList.push("Apples");
function getShoppingListMsg(){
function getShoppingListMsg() {
return `Current Shopping List: ${shoppingList}`;
}
@@ -58,7 +58,7 @@ console.log("It will be nice to have some fruit to eat.");
shoppingList.push("Apples");
function getShoppingListMsg(){
function getShoppingListMsg() {
return `Current Shopping List: ${shoppingList}`;
}
@@ -32,7 +32,7 @@ console.log("It will be nice to have some fruit to eat.");
shoppingList.push("Apples");
function getShoppingListMsg(){
function getShoppingListMsg() {
return `Current Shopping List: ${shoppingList}`;
}
@@ -32,7 +32,7 @@ console.log("It will be nice to have some fruit to eat.");
shoppingList.push("Apples");
function getShoppingListMsg(){
function getShoppingListMsg() {
return `Current Shopping List: ${shoppingList}`;
}