Hello students and self-learners, here is another interesting JavaScript program for you to learn the fundamentals. In this post, I am going to write a
In this post, you will be learning how to do Addition, Subtraction, Multiplication & Division using pure JavaScript. Let’s see a simple snippet first:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
//addition add = 5 + 2; document.write(add+"<br>"); //subtraction sub = 5 - 2; document.write(sub+"<br>"); //multiplication mul = 5 * 2; document.write(mul+"<br>"); //division div = 5 / 2; document.write(div+"<br>"); |
Hello students and self-learners, here is another interesting program for you to learn the basics of C programming. In this post, you are going to
So in this post, we are going to see how we can do the mathematical operations such as Addition, Subtraction, Multiplication & Division in C
Yes, Let’s write a C program to swap values. This post is useful for school students and those who are learning C programming themselves. Swapping
In this post, we are going to see how to write a small piece of PHP snippet to remove all duplicate characters in a string.
In this post, we are going to write a C program to generate Multiplication table. Let’s see how to write it with a simple snippet
In this post we are going to write a PHP program to check Strong number. Before that if you don’t know what is a Strong
This post will explain how to find a substring in a string using pure JavaScript. Let’s see how can we achieve this.
1 2 3 |
var str = 'testing'; var substr = 'tin'; alert(str.indexOf(substr) !== -1); |
The above