Ziv Glazer
Ziv Glazer
`type MenuConfig = { title?: string, body?: string, buttonText?: string, cancellable?: boolean }; function createMenu({ title = 'Foo', body = 'Bar', buttonText = 'Baz', cancellable = true }: MenuConfig) {...
Function arguments (2 or fewer ideally) - Talks about destructing but I don't see destructing used
In the example of "Function arguments (2 or fewer ideally)" There is a talk about destrcuting, which to what I know is: ``` const object = {a: 1, b: 2};...
As the title states, when ever I get an exception about ngrev not being able to parse my project, the exception has good information in it about the exception and...