ANGELA
ANGELA
ANGELA
¿Qué es ECMAscript??
significa el Script de la Asociación Europea de Fabricantes de Computadoras.
al escribir estas instrucciones y decirles a los actores lo que deben decir, podemos determinar cómo debe funcionar nuestra obra.
Entonces, en este caso, usamos nuestro Javascript para decirles a nuestros jugadores o elementos lo que debe hacer Y así es como
funcionan los lenguajes de secuencias de comandos.
para poder darle instrucciones a js debemos hablar su idioma y encontrar las palabras clave "keywords" adecuadas y correctas para
decirle lo que queremos que haga
¿cómo encuentro las keywords o cómo sabemos cuáles son esas palabras clave?
vamos a dirigirnos a mdn web docs. y seleccionamos javascript.
No! puedes usar o inventar la palabra clave debes usar las que ya tienes en js dentro dela documentación de mdn, palabras que el
navegador conozca
En el caso de las letras “hello” las comillas no es parte de la funcionalidad del código los paréntesis dictan cuál debe ser el mensaje es
decir es un string caracters
There are other Data Types for example numbers because they have different symbols from the alphabet.
We don’t actually need any special symbols to tell the computer that this is a number… we can just simply type the number.
This data type describes is either true or false
104 Javascript variables
alert("hello");
alert("world");
105
Una variable en JavaScript es como una caja en la que puedes guardar cosas que necesitas usar más tarde. Imagina que tienes una
caja en la que puedes guardar tus juguetes favoritos. Cuando quieras jugar con tus juguetes, lo sacas de la caja. De manera similar,
en JavaScript, puedes crear una variable y asignarle un valor (como una palabra o un número) y usarlo más tarde en tu código. Es
como si estuvieras diciéndole a la computadora "guarde esto aquí y luego use esto cuando lo necesite". Así que, en resumen, una
variable en JavaScript es una forma de guardar y usar información en tu programa.
Los nombres de las variables deben comenzar con una letra, un guión bajo (_) o un signo de dólar ($). No deben comenzar con un
número u otro carácter.
Los nombres de las variables pueden contener letras, números, guiones bajos (_) o signos de dólar ($). No deben contener espacios u
otros caracteres especiales.
Los nombres de las variables son sensibles a mayúsculas y minúsculas. "Nombre" y "nombre" son considerados como dos variables
diferentes.
Los nombres de las variables no deben ser palabras clave o palabras reservadas en JavaScript, como if, else, while, for, etc.
Los nombres de las variables deben ser descriptivos y representar el propósito de la variable en el contexto del programa.
Las palabras clave de JavaScript son palabras reservadas que tienen un significado especial en el lenguaje y no se pueden utilizar
como nombres de variables, funciones o clases. Algunas de las palabras clave más comunes en JavaScript son:
let, const, y var: para declarar variables
function: para definir funciones
return: para devolver valores desde funciones
if, else if, y else: para estructuras de control de flujo condicionales
for y while: para estructuras de control de flujo de bucle
switch y case: para estructuras de control de flujo condicionales múltiples
try, catch, y finally: para estructuras de control de excepciones
class, extends, y super: para definir y heredar clases en programación orientada a objetos
import y export: para importar y exportar módulos
Hay más palabras clave en JavaScript, pero estas son algunas de las más comunes que se utilizan en la mayoría de los programas de
JavaScript.
String concatenation is the process of combining two or more strings into a single string. In JavaScript, you can concatenate strings
using the "+" operator.
For example, if you have two strings "Hello" and "world", you can concatenate them like this:
To retrieve the length of a string, you can use the built-in length property. For example, if you have a string variable myString, you can
retrieve its length using myString.length. This will return the number of characters in the string.
It's important to note that the length property is not a function, but a property, so you don't need to use parentheses when accessing it.
In addition to retrieving the length of a string, you can also retrieve individual characters from a string by using bracket notation. Each
character in the string is assigned an index, starting from 0 for the first character. For example, if you have a string variable myString,
you can retrieve the first character by using myString[0], the second character by using myString[1], and so on.
It's important to note that attempting to access an index that doesn't exist in the string will result in undefined. It's also important to
remember that strings in JavaScript are immutable, meaning that individual characters cannot be changed directly once the string has
been created.
111. Challenge: Changing Casing in Text
I want to show you that you can do with strings is, you can use a method called “toUpperCase()”, that changes all of the
characters in your string to uppercase. So as we have done before, we simply take the variable, and then we write a dot,
and then we use toUpperCase.
So I have a variable that is called name and it contains the string “dani”. Now, if I write name.toUppercase, and then I
add some empty parentheses, and finish off my statement
CHALLENGE
You first start off with a keyword called function that tells the computer that you are constructing, that you are creating
a new function.
We use the function keyword to
say that we're creating a new
function and then we get to give
the function a name to identify
that block of instructions. And
finally we get to put in all the
instructions that we want to be
carried out whenever we call the
function getMilk.
And when we do call the
function getMilk, then all of the
instructions inside that function
will get taken out and executed.
And once you do this, the computer will look to find where this function was created and it will carry out all the
instructions inside the curly braces.