Last Sync: 2022-10-02 14:30:05

This commit is contained in:
tactonbishop 2022-10-02 14:30:05 +01:00
parent 4d327b2fd0
commit f1b947ed42

View file

@ -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