You can use different sizes for your headings. HTML has six levels of headings, which use the elements , , , , , and . While displaying any heading, browser adds one line before and one line after that heading. Heading Example This is heading 1 This is heading 2 This is heading 3 This […]
For installing node and NPM follow below steps: 1. Download the appropriate installer from below link Download 2. Run the installer (the .msi file you downloaded in the previous step.) 3. Test node JS is installed or not. (i) check node version by node -v (ii) check NPM version npm -v
NPM stands for “node package manager”. It is online repository for publish the node js project.
Please follow below steps for create angular2 project: Step 1. Set up the Development Environment (Install the angular-cli globally) npm install -g @angular/cli Step 2. Create a new project (my-app is the project name) ng new my-app Step 3: Serve the application cd my-app ng serve –open
TypeScript is superset of javascript. Which provides some of features that javascript doesn’t provide. In TypeScript we can define type of variable, define classes and interface, Changes of error is very less because in TypeScript compile time checking is also there so that we can easily identify the errors in code. We can write code […]