HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <script> var name = "OSx"; var model = "version 14.2"; document.write("We are using "+name+" "+model); //Using quotation var uSingleQuotation="I'm here"; var uDoubleQuotation='I like "JavaScript".'; document.write("<br>"+uSingleQuotation+" and "+uDoubleQuotation); </script> </body> </html>
OUTPUT
×

Save as Private