Closed eulores closed 2 years ago
def method name = 'imba' console.log param
should be
def method name = 'imba' console.log name
let todo = new Todo 'Read introduction'
let todo = new Todo title: 'Read introduction'
otherwise the constructor would not take Read introduction to initialize title.
Read introduction
for num in array when num != 2 num
array is undefined
array
imba.mount <todo-app data=todos>
todos is undefined
todos
These appear to have been fixed, thank you!
Basic Syntax / Methods
should be
Basic Syntax / Class Declarations
should be
otherwise the constructor would not take
Read introduction
to initialize title.Basic Syntax / Loops & Iteration
array
is undefinedBasic Syntax / Components
todos
is undefined