Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature luis porto javascripting #53

Open
wants to merge 23 commits into
base: develop
Choose a base branch
from

Conversation

lmportoesq
Copy link

Descripci贸n

Ejercicios Javascripting.

Feeling

  • 馃 Solucion rapida
  • 馃憣 Terminado y listo
  • 馃 Espero que esto funcione, por favor revisar cuidadosamente

C贸mo probar?

Ejecutar cada archivo con javascripting verify nomArchivo.js

Scope

  • 馃悶 Bugfix (non-breaking changes que resuelve un problema
  • 馃挌 Mejora (non-breaking change que agrega/modifica funcionalidad a una caracter铆stica existente)
  • 鈿★笍 Nueva caracter铆stica/feature (non-breaking change que agrega una nueva caracter铆stica)
  • 鈿狅笍 Breaking change (cambio que no es compatible con versiones anteriores y/o cambia la funcionalidad actual)

@@ -0,0 +1 @@
console.log('hello')
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tiene ese s铆mbolo rojo que significa que el archivo no tiene el final de l铆nea al final, no s茅 por qu茅 hace eso en algunos archivos

@@ -0,0 +1,2 @@
const example='some string'
console.log(example)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

al archivo le falta el fin de l铆nea al final

@@ -0,0 +1,2 @@
const someString='this is a string'
console.log(someString)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

falta fin de l铆nea al final del archivo

@@ -0,0 +1,3 @@
const example='example string'

console.log(example.length)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

falta fin de l铆nea al final del archivo

@@ -0,0 +1,3 @@
let pizza='pizza is alright'
pizza=pizza.replace('alright','wonderful')
console.log(pizza)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

falta fin de l铆nea al final del archivo

@@ -0,0 +1,2 @@
const example=123456789
console.log(example)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

falta fin de l铆nea al final del archivo

let n=128
n=n.toString()

console.log(n)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

falta fin de l铆nea al final del archivo

console.log('The fruit name has more than five characters.')
}else{
console.log('The fruit name has five characters or less.')
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

falta fin de l铆nea al final del archivo

@@ -0,0 +1,6 @@
fruit='orange'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no olvides definir si es let o const

for(let i=0;i<limit;i++){
total+=i;
}
console.log(total)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

falta fin de l铆nea al final del archivo

for(let i=0;i<pets.length;i++){
pets[i]=pets[i]+'s'
}
console.log(pets)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

falta fin de l铆nea al final del archivo

crust: 'deep dish',
serves: 2
}
console.log(pizza)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

falta fin de l铆nea al final del archivo

const food = {
types: 'only pizza'
}
console.log(food['types'])
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

falta fin de l铆nea al final del archivo

}
const keys = Object.keys(car)

console.log(keys)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

falta fin de l铆nea al final del archivo

function math(firstArg, secondArg,threeArg) {
return (secondArg*threeArg)+firstArg
}
console.log(math(53,61,67))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

falta fin de l铆nea al final del archivo

Copy link
Contributor

@d1360cub d1360cub left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

a algunos archivos les falta el fin de l铆nea, creo que es porque te queda faltando cerrar una l铆nea con punto y coma

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants