mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-06-19 21:09:51 +08:00
fix(curriculum): typo in step 47 binary project (#54390)
This commit is contained in:
parent
a7b835f6c7
commit
75058e654a
@ -9,7 +9,7 @@ dashedName: step-47
|
||||
|
||||
In computer science, a <dfn>stack</dfn> is a data structure where items are stored in a <dfn>LIFO</dfn> (last-in-first-out) manner. If you imagine a stack of books, the last book you add to the stack is the first book you can take off the stack. Or an array where you can only `.push()` and `.pop()` elements.
|
||||
|
||||
The <dfn>call stack</dfn> is a collection of function calls stored in a stack structure. When you call a function, it is added to the top or of the stack, and when it returns, it is removed from the top / end of the stack.
|
||||
The <dfn>call stack</dfn> is a collection of function calls stored in a stack structure. When you call a function, it is added to the top of the stack, and when it returns, it is removed from the top / end of the stack.
|
||||
|
||||
You'll see this in action by creating mock call stack.
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user