Posts

Showing posts with the label Development

What is data binding

It is a process that creates a connection between the data and UI. When data changes the UI elements that are bound to the data will change.

What is a Typescript

Typescript is a superset of Javascript It adds additional features to the Javascript It is strictly typed. It throws an error during compile time where as Javascript won't It improves the productivity

What are Multi page Applications

 Multi-Page applications are created using traditional approaches. It requires a page reload. Advantages: More Secure SEO Scalable

What are Single Page Application

 Single-page applications are the modern method of app creation. These apps are accessed from the browser and don't require a page load while using. Advantages Faster Development code reusability performance easy maintenance