◎ 삼항연산자
function three_cal(TF) {
return TF ? console.log('맞았습니다.') : {console.log('틀렸습니다.')}
}
three_cal(4==7)
three_cal(4!=7)
◎ filter
const guys = [
{ name: 'YD', money: 500000 },
{ name: 'Bill', money: 400000 },
{ name: 'Andy', money: 300000 },
{ name: 'Roky', money: 200000 }
];
const rich = guys.filter(man => man.money > 300000);
console.log(rich);
◎ async와 await를 사용하여 비동기 프로그래밍
- 자바스크립트는 개별적으로 작업을 진행
- 작업을 순서대로 진행하기 위해서는 async와 await을 이용
const getLocation = async () => {
try {
await Location.requestPermissionsAsync();
const locationData= await Location.getCurrentPositionAsync();
const latitude = locationData['coords']['latitude']
const longitude = locationData['coords']['longitude']
const API_KEY = "cfc258c75e1da2149c33daffd07a911d";
const result = await axios.get(
`http://api.openweathermap.org/data/2.5/weather?lat=${latitude}&lon=${longitude}&appid=${API_KEY}&units=metric`
);
console.log(result)
} catch (error) {
Alert.alert("위치를 찾을 수가 없습니다.", "앱을 껏다 켜볼까요?");
}
}