Skip to main content

Posts

Showing posts with the label JAVASCRIPT English Version

Looping In Javascript Program

What will you do when told to print a sentence repeated?  For example:  "Please show the phrase "Learning Javascript in  FajarYusuf . Com ! "  on my website as much as 10 times "  Maybe you could write the function document.write () 10 times like this: <!DOCTYPE html> < html lang = "en" > < head > < title > looping </ title > </ head > < body > < script > document .write( "<p>Learning Javascript in FajarYusuf . Com !</p>" ); document .write( "<p>Learning Javascript in FajarYusuf . Com !</p>" ); document .write( "<p>Learning Javascript in FajarYusuf . Com !</p>" ); document .write( "<p>Learning Javascript in FajarYusuf . Com !</p>" ); document .write( "<p>Learning Javascript in FajarYusuf . Com !</p>" ); document .write( "<p>Learning Javascript in FajarYusuf . Com !...