Paracetamol.js๐| #105: ์๋ฐ์คํฌ๋ฆฝํธ ์ฝ๋ ์ค๋ช
3036 ๋จ์ด webdevjavascriptspanishbeginners
Explica este codigo JavaScript
๋์ด๋: Intermedio
const getPerro = ({ id=0, datos:{nombre, cola, edad} = {nombre:"SN", cola:true, edad:0} } = {} ) => {
return {id, nombre, cola, edad}
}
const perro = {
id: 5,
datos: {
nombre: "Boby",
cola: true,
edad: 2
}
}
console.log(getPerro())
A.
{ cola:true, edad:2, id:5, nombre:"Boby"}
B. { cola:true, edad:0, id:0, nombre:"SN"}
C. Syntax Error
D. Reference Error
Respuesta en el primer comentario.
์๋ต:
B.
{ cola:true, edad:0, id:0, nombre:"SN"}
En javascript es posible hacer una desestructuraciรณn de objetos asignando valores por defecto, esto es bastante รบtil para poder hacer mรกs flexibles las llamadas a funciones que no requieren todos los paramรฉtros para que se ejecuten.
En el ejemplo llamamos a
getPerro()
sin ningรบn parametro lo que deberรญa arrojar un error sino tuvieramos configurados valores por defaulto.
Reference
์ด ๋ฌธ์ ์ ๊ดํ์ฌ(Paracetamol.js๐| #105: ์๋ฐ์คํฌ๋ฆฝํธ ์ฝ๋ ์ค๋ช ), ์ฐ๋ฆฌ๋ ์ด๊ณณ์์ ๋ ๋ง์ ์๋ฃ๋ฅผ ๋ฐ๊ฒฌํ๊ณ ๋งํฌ๋ฅผ ํด๋ฆญํ์ฌ ๋ณด์๋ค https://dev.to/duxtech/paracetamoljs-104-explica-este-codigo-javascript-3f90ํ ์คํธ๋ฅผ ์์ ๋กญ๊ฒ ๊ณต์ ํ๊ฑฐ๋ ๋ณต์ฌํ ์ ์์ต๋๋ค.ํ์ง๋ง ์ด ๋ฌธ์์ URL์ ์ฐธ์กฐ URL๋ก ๋จ๊ฒจ ๋์ญ์์ค.
์ฐ์ํ ๊ฐ๋ฐ์ ์ฝํ ์ธ ๋ฐ๊ฒฌ์ ์ ๋ (Collection and Share based on the CC Protocol.)
์ข์ ์นํ์ด์ง ์ฆ๊ฒจ์ฐพ๊ธฐ
๊ฐ๋ฐ์ ์ฐ์ ์ฌ์ดํธ ์์ง
๊ฐ๋ฐ์๊ฐ ์์์ผ ํ ํ์ ์ฌ์ดํธ 100์ ์ถ์ฒ ์ฐ๋ฆฌ๋ ๋น์ ์ ์ํด 100๊ฐ์ ์์ฃผ ์ฌ์ฉํ๋ ๊ฐ๋ฐ์ ํ์ต ์ฌ์ดํธ๋ฅผ ์ ๋ฆฌํ์ต๋๋ค