Author: Fabian Ros
How To Reverse Each Word Of A String In Java?
Example : If Input is = “Java” Output should be = “avaj” How?? -> Split the given inputString into…
Java Program To Check Whether Mobile Number Is Valid Or Not
While developing applications, You need to check whether the user input is valid number or not. Lets take mobile…
Java Program To Print Different Star Pattern
Print Different Star Pattern : In Java language, You can simply print triangle shape using ‘for loop’…
How To Print Different Number Pattern Programs In Java
Pattern No. 1 1 1 2 1 2 3 1 2 3 4 1 2 3 4…
Errors – JavaScript Basics
try statement allows to analyse block of code for errors. catch statement allows to handle error. throw statement allows to…
For Loop – JavaScript Basics
With help of Loop a block of code can carry work number of times. Instead of writing…
Switch Statement – JavaScript Basics
It is used to perform different actions on different conditions. How does it works?? – switch expression is…
If…Else Statement – JavaScript Basics
When you write codes, most of the times you want to perform various actions for different decisions…
Events – JavaScript Basics
Things that happen to HTML elements are HTML Events and JS can react on these events when…
Variables – JavaScript Basics
Variables are the packages for storing the values. Lets take an example, suppose a,b,c are variables :…
Statements – JavaScript Basics
Statements are “instructions” to be “executed” by Web Browser. JS Statement This is a simple statement to…