Created by Microsoft in 2012, this allows you to create optional static checking.
What is TypeScript?
This is the year VueJS was originally released
What is 2014?
The top-most scope available for AngularJS components (which inherit scope from their parent scope)
What is $rootScope?
After creating Underscore and Backbone, this language was created in 2009. Inspired by Ruby, Python, and Haskell, it was hoping to enhance JavaScript's brevity and readability. It had built-in list comprehensions and restructuring. Used for plugins in Atom.
What is CoffeeScript?
What is the directive used to render an array in a template?
What is `v-for`?
Using Firebase and AngularJS, this is a variable binding in scope that also syncs with the Firebase api and other devices.
What is a three-way binding?
Similar in name to the compiler it uses, this Lisp based language is typically used to on the server as an alternative for Java compiling to the JVM.
What is ClojureScript?
What is the shorthand for `v-on:click` directive?
What is @Click?
This now-defunct restriction allowed directives to be applied to something other than elements, attributes, or classes.
What is the 'M' comment restriction?
Abbreviated as Wasm, it's a binary instruction format for a stack based virtual machine.
What is WebAssembly?
This is the name of the new VueJS v3 api used to write components. Also a response to React Hooks
What is Function API / Composition API?
This fix is required when using a jQuery library to create a photo gallery and nothing happens when calling the library’s onPhotoSelect
What is update the library’s callback to update scope variables?
Created by Evan Czaplicki, it's a typed functional language for browser applications. Its selling point is "guaranteed no null pointer exceptions, no 'undefined is not a function'".
What is Elm?
`<component :is="myComponent"></component>` is considered this type of component.
What is a dynamic component?
Among the many possibile $filter that can be applied to an ng-repeat , this is what you use to pick out only the items you need.
What is the $filter “filter”?