Complete the code to create a new Angular project named 'my-app'.
ng [1] my-appThe ng new command creates a new Angular project with the specified name.
Complete the command to create a new Angular project without installing dependencies immediately.
ng new my-app [1]The --skip-install flag tells Angular CLI to create the project but skip installing npm packages right away.
Fix the error in the command to create a new Angular project with routing enabled.
ng new my-app [1]The correct flag to enable routing in a new Angular project is --routing.
Fill both blanks to create a new Angular project with SCSS styling and strict mode enabled.
ng new my-app [1] [2]
--style=css instead of SCSS.--no-strict which disables strict mode.Use --style=scss to set SCSS styling and --strict to enable strict mode.
Fill all three blanks to create a new Angular project named 'shop', with routing and skip installing dependencies.
ng new [1] [2] [3]
--style=scss instead of --skip-install for skipping install.The project name is 'shop', routing is enabled with --routing, and dependencies installation is skipped with --skip-install.