Javascript Define and Call Functions
Up to now we have write out code line by line. But there is problem with that. What will we do if the same 3 line code should be used in different 120 places. Here functions come to play. Functions a block of code that can be used just with single line. function sum(a,b){ return … Read more