Abstract class in Java

A class that is declared with abstract keyword, is known as abstract class in java. It can have abstract and non–abstract methods (method with body) Abstraction in Java Abstraction is a process of hiding the implementation details and showing only functionality to the user Abstraction lets you focus on what the object does instead of … Read more

What is Module in javascript ES6 ?

Module in javascript is a piece of reusable code that can easily be use intoother JavaScript files JavaScript modules are stored in separate files, one file per module. There are twooptions when creating and exporting a module: you can export multiple JavaScriptobjects from a single module, or one JavaScript object per module Example of ES6 … Read more

What is Template Strings in javascript ES6 ?

Template Strings in ES6 provide us with an alternative to string concatenation. They alsoallow us to insert variables into a string. that’s make quite easy for String Concatenation in ES6 But with a Template Strings, we can create one string and insert the variable values by surrounding them with ${ }: Example of Traditional Strings … Read more

React js application modification after installation ?

If you want to modify the React js Application after installation then just go to myfirstreact after that go to src folder and just open the App.js file and modify that  myfirstreact>src>App.js The default React Application code will look like If you just want Hello World for React application then just remove the tag from … Read more