Paracetamol.js💊| #92: Explica este código JavaScript
3493 단어 spanishbeginnersjavascriptwebdev
Explica este codigo JavaScript
const a = [1, 2, 3];
const b = [1, 2, 3];
const c = [1, 2, "3"];
console.log(JSON.stringify(a) === JSON.stringify(b)); //? 🤔
console.log(JSON.stringify(a) === JSON.stringify(c)); //? 🤔
A.
true
, false
B. false
, false
C. false
, true
D. true
, true
⬇ 응답 ⬇
A.
true
, false
JSON.stringify
Convierte al los arreglos en cadenas.Para los arreglos
a
Y b
텐드리아모스:console.log("[1, 2, 3]" === "[1, 2, 3]"); //true
Para los arreglos
a
Y c
텐드리아모스:console.log("[1, 2, 3]" === "[1, 2, "3"]"); //false
Son simples comparaciones de primitivos, en este caso de cadenas.
우사르
JSON.stringify
es muy común cuando se quiere verificar si 2 arreglos son iguales o no.
Reference
이 문제에 관하여(Paracetamol.js💊| #92: Explica este código JavaScript), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/duxtech/paracetamoljs-92-explica-este-codigo-javascript-2h5n텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)