@itsJin
WEB DEVELOPER
Nothing here yet.
Nothing here yet.
for (initialization; condition; afterthought) statement initialization is first executed. and then it goes to condition part and if is true now it goes into statement part After executing all the statements it goes to afterthought And then g...

bubble sort, values go up like a bubble Bubble Sort Pseudocode Start looping from with a variable called i the end of the array towards the beginning Start an inner loop with a variable called j from the beginning until i - 1 If arr[j] is greater ...

I'm gonna list several searching algorithm, its pseudocode and the real code with javascript. Linear Search Pseudocode This function accepts array and a value Loop through the array and check if the current array elements is equal to value. If it ...
