3,配列 複数のデーターを扱う
0 1 2
const weather = ["晴れ", "曇り", "雨"];
document.getElementById("test").textContent ="今日の天気は" + weather[1];
3,配列 複数のデーターを扱う
0 1 2
const weather = ["晴れ", "曇り", "雨"];
document.getElementById("test").textContent ="今日の天気は" + weather[1];