Parents : Functional Programming

Date and time note was created$= dv.current().file.ctime
Date and time note was modified$= dv.current().file.mtime

Function uses a stack data structure during the execution.

  • Each function call creates a frame space inside the memory in stack data structure.
  • After the call is finish executing the frame is popped out of the stack.

Issues with call stack

  • Stack has limited space owing to which it can lead to Stack Overflow.

Related

References