Submitted by sneha on Fri, 07/10/2020 - 10:25
Submitted by sneha on Wed, 05/13/2020 - 23:35
Like in movies, going through some flash back through the history can help us understand the present better.
-
JDK Beta – 1995
-
JDK 1.0 – January 1996
-
JDK 1.1 – February 1997
-
J2SE 1.2 – December 1998
-
J2SE 1.3 – May 2000
-
J2SE 1.4 – February 2002
-
J2SE 5.0 – September 2004
-
Java SE 6 – December 2006
-
Java SE 7 – July 2011
-
Java SE 8 – March 2014
-
Java SE 9 – September 2017
Submitted by sneha on Wed, 05/15/2019 - 19:19
We have a content type named 'Q & A'. Go to Structure > Add Content > Q& A and nvaigate to Question text area section. Or click here.
Select the text format as FULL HTML.
Start typing the code in text area
Once you have started writing the code, click on Source option in editor toolbar,
Submitted by sneha on Sun, 07/08/2018 - 02:02
Add below lines to package.json
"bootstrap": "4.0.0-beta.2",
Run npm install on the project folder to download the files.
For the project to identify the javascript and css files add below lines to angular-cli.json
"styles": [
"styles.css",
"../node_modules/bootstrap/dist/css/bootstrap.min.css"
],
/bootstrap.js to scripts tag
"scripts": ["../node_modules/bootstrap/dist/js/bootstrap.js"],
Submitted by sneha on Mon, 06/04/2018 - 03:27
Angular is a single page application. Single page served by angular is index.html. Below is the structure of default index.html.
<app-root> is a tag present in index.html. How angular will know about this tag. That is taken care by main.ts which is the first script that will run. Below is the structure of main.ts
Pages