From f1b947ed42fb79df6eead634153702cb1bcbcec1 Mon Sep 17 00:00:00 2001 From: tactonbishop Date: Sun, 2 Oct 2022 14:30:05 +0100 Subject: [PATCH] Last Sync: 2022-10-02 14:30:05 --- Software_Engineering/Call_stack.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Software_Engineering/Call_stack.md b/Software_Engineering/Call_stack.md index 7d46d2f..74f919f 100644 --- a/Software_Engineering/Call_stack.md +++ b/Software_Engineering/Call_stack.md @@ -1,5 +1,6 @@ --- -category: Software Engineering +categories: + - Software Engineering tags: - callstack --- @@ -12,12 +13,12 @@ A [stack](/Data_Structures/Stacks.md) data structure that holds the information ```js function greet(who) { - console.log('Hello ' + who); + console.log("Hello " + who); } -greet('Harry'); +greet("Harry"); -console.log('Bye'); +console.log("Bye"); ``` ### Breakdown