This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const template = document.createElement('template'); | |
template.innerHTML = ` | |
<div> | |
Hello Weather App | |
</div> | |
` | |
class WeatherCard extends HTMLElement { | |
constructor() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
( | |
('Andong', _('Andong'), ),('Ansan', _('Ansan'), ),('Anseong', _('Anseong'), ),('Anyang', _('Anyang'), ), | |
('Boryeong', _('Boryeong'), ),('Bucheon', _('Bucheon'), ),('Busan', _('Busan'), ),('Changwon', _('Changwon'), ), | |
('Cheonan', _('Cheonan'), ),('Cheongju', _('Cheongju'), ),('Chuncheon', _('Chuncheon'), ),('Chungju', _('Chungju'), ), | |
('Daegu', _('Daegu'), ),('Daejeon', _('Daejeon'), ),('Dangjin', _('Dangjin'), ),('Dongducheon', _('Dongducheon'), ), | |
('Donghae', _('Donghae'), ),('Gangneung', _('Gangneung'), ),('Geoje', _('Geoje'), ),('Gimcheon', _('Gimcheon'), ), | |
('Gimhae', _('Gimhae'), ),('Gimje', _('Gimje'), ),('Gimpo', _('Gimpo'), ),('Gongju', _('Gongju'), ), | |
('Goyang', _('Goyang'), ),('Gumi', _('Gumi'), ),('Gunpo', _('Gunpo'), ),('Gunsan', _('Gunsan'), ), | |
('Guri', _('Guri'), ),('Gwacheon', _('Gwacheon'), ),('Gwangju', _('Gwangju'), ),('Gwangju Gyeonggi', _('Gwangju Gyeonggi'), ), | |
('Gwangmyeong', _('Gwangmyeong'), ),('Gwangyang', _('Gwangyang'), ),('Gyeongju', _('Gyeong |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package unit_2; | |
import java.util.Arrays; | |
import java.util.HashSet; | |
import java.util.Set; | |
/** | |
* SIMPLE QUIZ UNIT_2 UOPEOPLE. | |
* A simple Quiz that asks uses a question. | |
* @author ericel123 | |
*/ |