안녕하세요, 이번 포스팅 또한 React-Native 작성을 위한 ES6 문법을 익혀보도록 하겠습니다. 아래의 링크는 최신 javascript 문법을 지원하는 웹콘솔입니다. https://es6console.com ES6 Console - try JavaScript compilers es6console.com 객체 비구조화 사용할 객체를 우선 작성 해 보도록 하겠습니다. const address = { country: '한국', city: '성남', street: '분당구', str_num: 193, postcode: '16053', }; 위의 객체를 출력 해 보도록 하겠습니다! const { country, city } = address; console.log(`${country}, ${city}`);..