2024/10/25 3

[Javascript] 과제: 배열

https://developer.mozilla.org/en-US/docs/Learn/JavaScript/First_steps/Test_your_skills:_Arrays Test your skills: Arrays - Learn web development | MDNThe aim of this skill test is to assess whether you've understood our Arrays article.developer.mozilla.org  배열 정리배열은 리스트와 거의 같다고 생각하시면 돼요.배열을 활용하는 경우 많은 함수(메서드)를 사용할 수 있는데 그중에서도 중요한 함수 네 가지 정리하려고 합니다.기본적인 배열이 있는 경우 위의 그림처럼 네 가지의 함수를 통해서 배열 안의 원소를 넣을..

[Javascript] 과제: Silly story generator

https://developer.mozilla.org/ko/docs/Learn/JavaScript/First_steps/Silly_story_generator Silly story generator - Web 개발 학습하기 | MDN이 모듈에서 배운 지식들을 바탕으로 랜덤하게 꾸며진 이야기(silly stories)가 만들어지는 재미있는 앱을 만들어 볼거에요. 즐겨봅시다!developer.mozilla.org 목차문제 및 풀이코드결과문제 및 풀이사이트 문제가 다 한국어로 되어 있어서 읽는 데에 크게 불편함은 없을 거 같아요. 그래도 간략하게 설명할게요.이 문제는 input에 이름을 입력하면 그 이름을 입력받아 무작위 이야기를 만들어 내도록 구현해야 합니다.index.html, raw-text.txt, m..

[Javascript] 과제: 기본적인 연산

https://developer.mozilla.org/en-US/docs/Learn/JavaScript/First_steps/Test_your_skills:_Math Test your skills: Math - Learn web development | MDNThe aim of the tests on this page is to assess whether you've understood the Basic math in JavaScript — numbers and operators article.developer.mozilla.org 목차Math 1Math 2Math 3Math 1산술 연산자를 쓸 수 있는지 알기 위해 나온 문제입니다.Number를 담고 있는 네 개의 변수를 생성합니다. 변수 이름을 잘 짓..