-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.html
86 lines (71 loc) · 2.55 KB
/
page.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Intro JavaScript</title>
</head>
<body>
<!-- <h1>Mi pagina Web</h1> -->
<!-- <script src="introjs.js"></script> -->
<script>
//var nombre = "Andres Carlosama"
//var edad = 35
//alert(nombre);
//alert(edad);
//Ingreso de datos
//var nombre = prompt("Ingresa un nombre")
//alert(nombre);
//
/*
var nombre = prompt("Ingresa un nombre")
var edad = prompt("Ingresa un edad")
alert("Hola su nombre es " + nombre + " y su edad es " + edad + " años");
*/
//--------------------CONSICIONALES
/*var edad = 11
var nombre = "Andres"
if (edad > 18) {
document.write("Puedes ingresar")
}else{
document.write("No Puedes ingresar")
}
*/
//-------------------------CICLO
/*
var colores = ['Amarillo', 'Rojo', 'Cafe', 'Naranja', 'Morado'];
for(i = 0; i <= colores.length - 1; i++) {
document.write(colores[i] + "<br>")
}
*/
//----------------------FUNCIONES ----------------------
/*
var resta = function (num1, num2){
//INTRUCCIUONES DE LA FUNCIONES
return resultado = num1 - num2
}
document.write(resta(100,30))
function valorMinimo(v1,v2){
if (v1 < v2){
return (v1 + " es el numero menor")
} else{
return (v2 + " es el numero menor")
}
}
document.write(valorMinimo(100,50))
*/
//----------------------METODOS PARA STRING ----------------------
var nombre = "Andres Carlosama"
//var texto = nombre.length
//var texto = nombre.substring(7) //Corta una cadena de texto
//var texto = nombre.substr(0,5) //Muestra solo el rango de la string que se seleciona
//var texto = nombre.indexOf("a",8) //Busca el elemento que quiera buscar y desde la posicion que desee
//var texto = nombre.lastIndexOf("e") //Busca el elmento de atras para adelante
//var texto = nombre.replace("Carlosama", "Gutierrez") //Reemplaza valores en una cadena de texto o variables
//var texto = nombre.toUpperCase()
//var texto = nombre.toLowerCase()
document.write(texto)
</script>
</body>
</html>