Why JavaScript is awesome?

The reason why JavaScript is awesome because you can build anything in JavaScript Things you can build with JavaScript are: machine learning You can do machine learning in JavaScript with the help of: Tensorflow.js Brain.js KeraJS Mobile Development Mobile Development industry is growing very year. Now you can use JavaScript Frameworks like React Native Ionic NativeScript PHONEGAP Game Development Phaser.js PlayCanvas MelonJS You can also … Continue reading Why JavaScript is awesome?

What is Binary Search?

Binary Search is nothing but a Searching Algorithm. Which will help you search a element in array. Binary Search is most efficient algorithm for searching a element. The important thing about Binary Search is that, it will only apply to “sorted array”. The array should be sorted or else it will not work. It is faster Algorithm because you can eliminate half of the remaining … Continue reading What is Binary Search?

External link to what is bubble sort?

what is bubble sort?

Before explaining what is bubble sort. First we need to understand what is sorting means? Sorting means arranging the data or elements in a particular way. For example You given a array of numbers {1,5,10,8,3,1} which are un-order. You asked to arrange the elements in right order which are {1,1,3,5,8,10}. So, Now you know the concept of sorting. let’s see the basic sorting algorithm called … Continue reading what is bubble sort?