Best of Angular — November 2022
- 1
- 2
Community Picks·4y
React - Best Practices
In JavaScript, you can adopt ES6 syntax to make your code cleaner. Don't Forget key Prop With map in JSX Always assign a unique value to the prop to every JSX element while mapping from an array. Use Ternary Operator instead of if/else if Statements makes your code bulky.
- 3
- 4
freeCodeCamp·4y
TypeScript for React Developers – Why TypeScript is Useful and How it Works
The idea behind this article is to go through the basics of TS and understand the benefits of TypeScript. In the second section of this article, I will cover the specifics of TS with React. This should help you decide if you want those benefits or not.
- 5
asayer·4y
All about JavaScript Events
Javascript is used to make dynamic and interactive pages in the browser. Sometimes web developers use the Javascript event incorrectly, thereby not giving their webpages the perfect UI and UX it needs. It is a procedure that begins with the element that caused the event and then cascades up to the elements in the hierarchy that contain it.
- 6
Angular·4y
Angular v15 is now available!
Angular v15 is now available. Standalone APIs are now stable! In v14 we introduced new standalone APIs which enable developers to build applications without using NgModules. These APIs graduated from developer preview and are now part of the stable API surface. From here on we will evolve them gradually following semantic versioning.
- 7
- 8
- 9
DEV·4y
Hexagonal architecture as a solution to the obsolescence of UI frameworks
Hexagonal architecture is an architecture pattern created by Alistair Cockburn. The team announces the end of the development of the framework and an end of maintenance on December 31, 2021 (https://blog.angular.io/stable-angularjs-and-long-term)
- 10
- 11
- 12
DZone·4y
Typescript Interview Questions and Answers
TypeScript is one of the top frameworks for front-end programming for newcomers. The name and number of arguments can be the same for several functions, but the return type and parameter types need to be distinct. The overloading of functions with the same name, various types, and varying numbers of parameters is not supported by TypeScript.
- 13
JetBrains·3y
WebStorm 2022.3: New UI Preview, Vue and Angular Improvements, and Vitest Support
New UI Preview, Vue and Angular Improvements, and Vitest Support WebStorm 2022.3, our biggest update of the year, is here! This update is packed with new features and bug fixes to improve your development experience. You’ll find new project templates for Vite and Next.js and an updated template for Vue projects.
- 14
Java Code Geeks·3y
Form handling in React-js
React is a flexible javascript library responsible for building reusable UI components. It is an open-source component-based frontend library responsible only for the view part of an application and works in a virtual document object model. This was a tutorial to understand form handling in a React-js application.