QUOTES - quotes random

장돌뱅이 ·2022년 1월 23일
0
  • array 안에 10개의 object인 {} 를 콤마(,)로 구분하여 넣어준다.
  • Math 모듈 사용
  1. Math.random() : 0 ~ 1 사이의 랜덤한 숫자 제공(float)

  2. integer(정수) 반환하기
    Math.round(1.1) // 1 반환. 반올림.
    Math.ceil(1.1) // 2 반환. 올림
    Math.floor(1.9) // 1 반환. 내림

  • 랜덤하게 얻은 숫자에 10을 곱해서 floor() 사용
    item이 5개 있는 array에서 마지막 item을 가져오려면 필요한 숫자는 4다.
const quotes = [
  {
    quote:
      "A ship in harbor is safe, but that is not what ships are built for.",
    author: "John Augustus Shedd",
  },
  {
    quote: "Real success is finding your lifework in the work that you love.",
    author: "David McCullough",
  },
  {
    quote:
      "Let us always meet each other with smile, for the smile is the beginning of love.",
    author: "Mother Teresa",
  },
  {
    quote:
      "Challenges are what make life interesting and overcoming them is what makes life meaningful.",
    author: "Joshua J. Marine ",
  },
  {
    quote: "Live in the sunshine, swim the sea, drink the wild air.",
    author: "Ralph Waldo Emerson",
  },
  {
    quote: "Do not be afraid to give up the good to go for the great.",
    author: "John D. Rockefeller",
  },
  {
    quote:
      "If you really want to do something, you'll find a way. If you do not, you'll find an excuse",
    author: "Jim Rohn",
  },
  {
    quote:
      "When I get logical, and I don't trust my instincts - that's when I get in trouble.",
    author: "Angelina Jolie",
  },
  {
    quote: "It is kind of fun to do the impossible.",
    author: "Walt Disney",
  },
  {
    quote:
      "If you don’t get out of the box you’ve been raised in, you won’t understand how much bigger the world is.",
    author: "Angelina Jolie",
  },
];

const quote = document.querySelector("#quotes span:first-child");
const author = document.querySelector("#quotes span:last-child");

const todaysQuote = quotes[Math.floor(Math.random() * quotes.length)];

quote.innerText = todaysQuote.quote; //todaysQuote의 quote 넣어줌
author.innerText = todaysQuote.author;

  1. A ship in harbor is safe, but that is not what ships are built for. - John Augustus Shedd
    배는 항구에 있을때 가장 안전하지만 그것이 존재의 이유는 아니다.
  2. Real success is finding your lifework in the work that you love. - David McCullough
    진정한 성공은 평생의 일을 자신이 좋아하는 일에서 찾는 것이다.
  3. Let us always meet each other with smile, for the smile is the beginning of love. - Mother Teresa
    항상 미소로 만나자. 미소는 사랑의 시작이기 때문이다.
  4. Challenges are what make life interesting and overcoming them is what makes life meaningful. - Joshua J. Marine
    도전은 삶을 흥미롭게 만들고 극복하는 것이 삶을 의미있게 만든다.
  5. Live in the sunshine, swim the sea, drink the wild air. - Ralph Waldo Emerson
    햇살 속에 살고, 바다를 헤엄 치고, 거친 공기를 마셔라.
  6. Do not be afraid to give up the good to go for the great. - John D. Rockefeller
    더 좋은 것을 쫓기 위해 좋은 것을 버리는 것을 두려워하지 마라.
  7. If you really want to do something, you'll find a way. If you do not, you'll find an excuse. - Jim Rohn
    무언가를 정말 하고 싶다면, 당신은 방법을 찾을 것이다. 그렇지 않다면, 변명을 찾을 것이다.
  8. When I get logical, and I don't trust my instincts - that's when I get in trouble. - Angelina Jolie
    내가 논리적으로 되고, 내 본능을 믿지 않을 때 - 그 때 나는 곤경에 처하게 된다.
  9. It is kind of fun to do the impossible. - Walt Disney
    불가능을 하는 것은 좀 재미있다.
  10. If you don’t get out of the box you’ve been raised in, you won’t understand how much bigger the world is. - Angelina Jolie
    당신이 키워진 틀에서 벗어나지 못하면, 당신은 세상이 얼마나 더 큰지 이해하지 못할 것이다.

0개의 댓글