It can be asked in different terms like the following:
- how to check current version of angular
- how do i check current version of angular
- angular version check command
- How to check my current angular version
- how to know current version of angular
There are different ways by which you can retrieve the current version of angular being used in your system.
ng -v
ng v
You can issue any of the following in your angular CLI
Mostly it is ng v for Angular 8 version.
for Angular 2+ Chrome browser,go to Inspect element of browser and find for ng-version.
Check your project Package.json file
"dependencies": {
"@angular/animations": "~8.0.0",
"@angular/common": "~8.0.0",
"@angular/compiler": "~8.0.0",
"@angular/core": "~8.0.0",
"@angular/forms": "~8.0.0",
"@angular/platform-browser": "~8.0.0",
"@angular/platform-browser-dynamic": "~8.0.0"
}