Last Sync: 2022-10-02 14:30:05
This commit is contained in:
parent
4d327b2fd0
commit
f1b947ed42
1 changed files with 5 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue