{{theTime}}

Search This Blog

Total Pageviews

How to start Angular JS Application?

Goto the AngularJS project folder and run the command - ng serve --open
        The application will be deployed and server will start on localhost 4200 port

No comments:

Java Script GET request Sample Code

fetch(' https://api.public.com/api ')   .then(response => response.json())   .then(data => console.log(data))   .catch(error =...