Ver ❯
Herramientas SEO
Tamaño del resultado:
668 x 574
×
Cambiar Orientacion
Cambiar tema, Oscuro/Luz
<!DOCTYPE html> <html> <head> <title>Ejemplo de JavaScript</title> <meta charset="UTF-8"> </head> <body> <body> <script type="text/javascript"> var str="¡JavaScript es guay!"; document.write("<p>" + str + "</p>"); document.write(str.length + "<br>"); document.write("<p>" + str.fontcolor() + "</p>"); document.write("<p>" + str.fontcolor('red') + "</p>"); document.write("<p>" + str.fontcolor('blue') + "</p>"); document.write("<p>" + str.fontcolor('green') + "</p>"); var pos=str.indexOf("Script"); if (pos>=0) { document.write("Script encontrado en la posición: "); document.write(pos + "<br>"); } else { document.write("¡Script no encontrado!" + "<br>"); } document.write(str.substr(2,6)); document.write("<br><br>"); document.write(str.substring(2,6) + "<br>"); document.write(str.toLowerCase()); document.write("<br>"); document.write(str.toUpperCase() + "<br>"); </script> </body> </html>