+
+
+
diff --git a/Week-3/Homework/mandatory/2-quotegenerator/quotes.js b/Week-3/Homework/mandatory/2-quotegenerator/quotes.js
index 39ab245..9a8f598 100644
--- a/Week-3/Homework/mandatory/2-quotegenerator/quotes.js
+++ b/Week-3/Homework/mandatory/2-quotegenerator/quotes.js
@@ -1,3 +1,5 @@
+//qouteElement.textContent = `${quotes.quote} by ${quotes.author}`;
+
// DO NOT EDIT BELOW HERE
// A function which will return one item, at
@@ -10,483 +12,498 @@
// Returns
// -------
// One item of the given array.
-//
+//cyf
+
// Examples of use
// ---------------
// pickFromArray([1,2,3,4]) //maybe returns 2
// pickFromArray(coloursArray) //maybe returns "#F38630"
//
// You DO NOT need to understand how this function works.
+
function pickFromArray(choices) {
- return choices[Math.floor(Math.random() * choices.length)];
+ return choices[Math.floor(Math.random() * choices.length)];
}
// A list of quotes you can use in your app.
// Feel free to edit them, and to add your own favourites.
-const quotes = [
- {
- quote: "Life isn’t about getting and having, it’s about giving and being.",
- author: "Kevin Kruse",
- },
- {
- quote: "Whatever the mind of man can conceive and believe, it can achieve.",
- author: "Napoleon Hill",
- },
- {
- quote: "Strive not to be a success, but rather to be of value.",
- author: "Albert Einstein",
- },
- {
- quote:
- "Two roads diverged in a wood, and I—I took the one less traveled by, And that has made all the difference.",
- author: "Robert Frost",
- },
- {
- quote: "I attribute my success to this: I never gave or took any excuse.",
- author: "Florence Nightingale",
- },
- {
- quote: "You miss 100% of the shots you don’t take.",
- author: "Wayne Gretzky",
- },
- {
- quote:
- "I’ve missed more than 9000 shots in my career. I’ve lost almost 300 games. 26 times I’ve been trusted to take the game winning shot and missed. I’ve failed over and over and over again in my life. And that is why I succeed.",
- author: "Michael Jordan",
- },
- {
- quote:
- "The most difficult thing is the decision to act, the rest is merely tenacity.",
- author: "Amelia Earhart",
- },
- {
- quote: "Every strike brings me closer to the next home run.",
- author: "Babe Ruth",
- },
- {
- quote: "Definiteness of purpose is the starting point of all achievement.",
- author: "W. Clement Stone",
- },
- {
- quote: "We must balance conspicuous consumption with conscious capitalism.",
- author: "Kevin Kruse",
- },
- {
- quote: "Life is what happens to you while you’re busy making other plans.",
- author: "John Lennon",
- },
- {
- quote: "We become what we think about.",
- author: "Earl Nightingale",
- },
- {
- quote:
- "Twenty years from now you will be more disappointed by the things that you didn’t do than by the ones you did do, so throw off the bowlines, sail away from safe harbor, catch the trade winds in your sails. Explore, Dream, Discover.",
- author: "Mark Twain",
- },
- {
- quote: "Life is 10% what happens to me and 90% of how I react to it.",
- author: "Charles Swindoll",
- },
- {
- quote:
- "The most common way people give up their power is by thinking they don’t have any.",
- author: "Alice Walker",
- },
- {
- quote: "The mind is everything. What you think you become.",
- author: "Buddha",
- },
- {
- quote:
- "The best time to plant a tree was 20 years ago. The second best time is now.",
- author: "Chinese Proverb",
- },
- {
- quote: "An unexamined life is not worth living.",
- author: "Socrates",
- },
- {
- quote: "Eighty percent of success is showing up.",
- author: "Woody Allen",
- },
- {
- quote:
- "Your time is limited, so don’t waste it living someone else’s life.",
- author: "Steve Jobs",
- },
- {
- quote: "Winning isn’t everything, but wanting to win is.",
- author: "Vince Lombardi",
- },
- {
- quote:
- "I am not a product of my circumstances. I am a product of my decisions.",
- author: "Stephen Covey",
- },
- {
- quote:
- "Every child is an artist. The problem is how to remain an artist once he grows up.",
- author: "Pablo Picasso",
- },
- {
- quote:
- "You can never cross the ocean until you have the courage to lose sight of the shore.",
- author: "Christopher Columbus",
- },
- {
- quote:
- "I’ve learned that people will forget what you said, people will forget what you did, but people will never forget how you made them feel.",
- author: "Maya Angelou",
- },
- {
- quote: "Either you run the day, or the day runs you.",
- author: "Jim Rohn",
- },
- {
- quote: "Whether you think you can or you think you can’t, you’re right.",
- author: "Henry Ford",
- },
- {
- quote:
- "The two most important days in your life are the day you are born and the day you find out why.",
- author: "Mark Twain",
- },
- {
- quote:
- "Whatever you can do, or dream you can, begin it. Boldness has genius, power and magic in it.",
- author: "Johann Wolfgang von Goethe",
- },
- {
- quote: "The best revenge is massive success.",
- author: "Frank Sinatra",
- },
- {
- quote:
- "People often say that motivation doesn’t last. Well, neither does bathing. That’s why we recommend it daily.",
- author: "Zig Ziglar",
- },
- {
- quote: "Life shrinks or expands in proportion to one’s courage.",
- author: "Anais Nin",
- },
- {
- quote:
- "If you hear a voice within you say “you cannot paint,” then by all means paint and that voice will be silenced.",
- author: "Vincent Van Gogh",
- },
- {
- quote:
- "There is only one way to avoid criticism: do nothing, say nothing, and be nothing.",
- author: "Aristotle",
- },
- {
- quote:
- "Ask and it will be given to you; search, and you will find; knock and the door will be opened for you.",
- author: "Jesus",
- },
- {
- quote:
- "The only person you are destined to become is the person you decide to be.",
- author: "Ralph Waldo Emerson",
- },
- {
- quote:
- "Go confidently in the direction of your dreams. Live the life you have imagined.",
- author: "Henry David Thoreau",
- },
- {
- quote:
- "When I stand before God at the end of my life, I would hope that I would not have a single bit of talent left and could say, I used everything you gave me.",
- author: "Erma Bombeck",
- },
- {
- quote:
- "Few things can help an individual more than to place responsibility on him, and to let him know that you trust him.",
- author: "Booker T. Washington",
- },
- {
- quote:
- "Certain things catch your eye, but pursue only those that capture the heart.",
- author: " Ancient Indian Proverb",
- },
- {
- quote: "Believe you can and you’re halfway there.",
- author: "Theodore Roosevelt",
- },
- {
- quote: "Everything you’ve ever wanted is on the other side of fear.",
- author: "George Addair",
- },
- {
- quote:
- "We can easily forgive a child who is afraid of the dark; the real tragedy of life is when men are afraid of the light.",
- author: "Plato",
- },
- {
- quote:
- "Teach thy tongue to say, “I do not know,” and thous shalt progress.",
- author: "Maimonides",
- },
- {
- quote: "Start where you are. Use what you have. Do what you can.",
- author: "Arthur Ashe",
- },
- {
- quote:
- "When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up. I wrote down ‘happy’. They told me I didn’t understand the assignment, and I told them they didn’t understand life.",
- author: "John Lennon",
- },
- {
- quote: "Fall seven times and stand up eight.",
- author: "Japanese Proverb",
- },
- {
- quote:
- "When one door of happiness closes, another opens, but often we look so long at the closed door that we do not see the one that has been opened for us.",
- author: "Helen Keller",
- },
- {
- quote: "Everything has beauty, but not everyone can see.",
- author: "Confucius",
- },
- {
- quote:
- "How wonderful it is that nobody need wait a single moment before starting to improve the world.",
- author: "Anne Frank",
- },
- {
- quote: "When I let go of what I am, I become what I might be.",
- author: "Lao Tzu",
- },
- {
- quote:
- "Life is not measured by the number of breaths we take, but by the moments that take our breath away.",
- author: "Maya Angelou",
- },
- {
- quote:
- "Happiness is not something readymade. It comes from your own actions.",
- author: "Dalai Lama",
- },
- {
- quote:
- "If you’re offered a seat on a rocket ship, don’t ask what seat! Just get on.",
- author: "Sheryl Sandberg",
- },
- {
- quote:
- "First, have a definite, clear practical ideal; a goal, an objective. Second, have the necessary means to achieve your ends; wisdom, money, materials, and methods. Third, adjust all your means to that end.",
- author: "Aristotle",
- },
- {
- quote: "If the wind will not serve, take to the oars.",
- author: "Latin Proverb",
- },
- {
- quote:
- "You can’t fall if you don’t climb. But there’s no joy in living your whole life on the ground.",
- author: "Unknown",
- },
- {
- quote:
- "We must believe that we are gifted for something, and that this thing, at whatever cost, must be attained.",
- author: "Marie Curie",
- },
- {
- quote:
- "Too many of us are not living our dreams because we are living our fears.",
- author: "Les Brown",
- },
- {
- quote:
- "Challenges are what make life interesting and overcoming them is what makes life meaningful.",
- author: "Joshua J. Marine",
- },
- {
- quote: "If you want to lift yourself up, lift up someone else.",
- author: "Booker T. Washington",
- },
- {
- quote:
- "I have been impressed with the urgency of doing. Knowing is not enough; we must apply. Being willing is not enough; we must do.",
- author: "Leonardo da Vinci",
- },
- {
- quote:
- "Limitations live only in our minds. But if we use our imaginations, our possibilities become limitless.",
- author: "Jamie Paolinetti",
- },
- {
- quote:
- "You take your life in your own hands, and what happens? A terrible thing, no one to blame.",
- author: "Erica Jong",
- },
- {
- quote:
- "What’s money? A man is a success if he gets up in the morning and goes to bed at night and in between does what he wants to do.",
- author: "Bob Dylan",
- },
- {
- quote: "I didn’t fail the test. I just found 100 ways to do it wrong.",
- author: "Benjamin Franklin",
- },
- {
- quote:
- "In order to succeed, your desire for success should be greater than your fear of failure.",
- author: "Bill Cosby",
- },
- {
- quote: "A person who never made a mistake never tried anything new.",
- author: " Albert Einstein",
- },
- {
- quote:
- "The person who says it cannot be done should not interrupt the person who is doing it.",
- author: "Chinese Proverb",
- },
- {
- quote: "There are no traffic jams along the extra mile.",
- author: "Roger Staubach",
- },
- {
- quote: "It is never too late to be what you might have been.",
- author: "George Eliot",
- },
- {
- quote: "You become what you believe.",
- author: "Oprah Winfrey",
- },
- {
- quote: "I would rather die of passion than of boredom.",
- author: "Vincent van Gogh",
- },
- {
- quote:
- "A truly rich man is one whose children run into his arms when his hands are empty.",
- author: "Unknown",
- },
- {
- quote:
- "It is not what you do for your children, but what you have taught them to do for themselves, that will make them successful human beings.",
- author: "Ann Landers",
- },
- {
- quote:
- "If you want your children to turn out well, spend twice as much time with them, and half as much money.",
- author: "Abigail Van Buren",
- },
- {
- quote:
- "Build your own dreams, or someone else will hire you to build theirs.",
- author: "Farrah Gray",
- },
- {
- quote:
- "The battles that count aren’t the ones for gold medals. The struggles within yourself–the invisible battles inside all of us–that’s where it’s at.",
- author: "Jesse Owens",
- },
- {
- quote: "Education costs money. But then so does ignorance.",
- author: "Sir Claus Moser",
- },
- {
- quote:
- "I have learned over the years that when one’s mind is made up, this diminishes fear.",
- author: "Rosa Parks",
- },
- {
- quote: "It does not matter how slowly you go as long as you do not stop.",
- author: "Confucius",
- },
- {
- quote:
- "If you look at what you have in life, you’ll always have more. If you look at what you don’t have in life, you’ll never have enough.",
- author: "Oprah Winfrey",
- },
- {
- quote:
- "Remember that not getting what you want is sometimes a wonderful stroke of luck.",
- author: "Dalai Lama",
- },
- {
- quote: "You can’t use up creativity. The more you use, the more you have.",
- author: "Maya Angelou",
- },
- {
- quote: "Dream big and dare to fail.",
- author: "Norman Vaughan",
- },
- {
- quote:
- "Our lives begin to end the day we become silent about things that matter.",
- author: "Martin Luther King Jr.",
- },
- {
- quote: "Do what you can, where you are, with what you have.",
- author: "Teddy Roosevelt",
- },
- {
- quote:
- "If you do what you’ve always done, you’ll get what you’ve always gotten.",
- author: "Tony Robbins",
- },
- {
- quote: "Dreaming, after all, is a form of planning.",
- author: "Gloria Steinem",
- },
- {
- quote:
- "It’s your place in the world; it’s your life. Go on and do all you can with it, and make it the life you want to live.",
- author: "Mae Jemison",
- },
- {
- quote:
- "You may be disappointed if you fail, but you are doomed if you don’t try.",
- author: "Beverly Sills",
- },
- {
- quote: "Remember no one can make you feel inferior without your consent.",
- author: "Eleanor Roosevelt",
- },
- {
- quote: "Life is what we make it, always has been, always will be.",
- author: "Grandma Moses",
- },
- {
- quote:
- "The question isn’t who is going to let me; it’s who is going to stop me.",
- author: "Ayn Rand",
- },
- {
- quote:
- "When everything seems to be going against you, remember that the airplane takes off against the wind, not with it.",
- author: "Henry Ford",
- },
- {
- quote:
- "It’s not the years in your life that count. It’s the life in your years.",
- author: "Abraham Lincoln",
- },
- {
- quote: "Change your thoughts and you change your world.",
- author: "Norman Vincent Peale",
- },
- {
- quote:
- "Either write something worth reading or do something worth writing.",
- author: "Benjamin Franklin",
- },
- {
- quote: "Nothing is impossible, the word itself says, “I’m possible!”",
- author: "–Audrey Hepburn",
- },
- {
- quote: "The only way to do great work is to love what you do.",
- author: "Steve Jobs",
- },
- {
- quote: "If you can dream it, you can achieve it.",
- author: "Zig Ziglar",
- },
+let quotes = [
+ {
+ quote: "Life isn’t about getting and having, it’s about giving and being.",
+ author: "Kevin Kruse",
+ },
+ {
+ quote: "Whatever the mind of man can conceive and believe, it can achieve.",
+ author: "Napoleon Hill",
+ },
+ {
+ quote: "Strive not to be a success, but rather to be of value.",
+ author: "Albert Einstein",
+ },
+ {
+ quote:
+ "Two roads diverged in a wood, and I—I took the one less traveled by, And that has made all the difference.",
+ author: "Robert Frost",
+ },
+ {
+ quote: "I attribute my success to this: I never gave or took any excuse.",
+ author: "Florence Nightingale",
+ },
+ {
+ quote: "You miss 100% of the shots you don’t take.",
+ author: "Wayne Gretzky",
+ },
+ {
+ quote:
+ "I’ve missed more than 9000 shots in my career. I’ve lost almost 300 games. 26 times I’ve been trusted to take the game winning shot and missed. I’ve failed over and over and over again in my life. And that is why I succeed.",
+ author: "Michael Jordan",
+ },
+ {
+ quote:
+ "The most difficult thing is the decision to act, the rest is merely tenacity.",
+ author: "Amelia Earhart",
+ },
+ {
+ quote: "Every strike brings me closer to the next home run.",
+ author: "Babe Ruth",
+ },
+ {
+ quote: "Definiteness of purpose is the starting point of all achievement.",
+ author: "W. Clement Stone",
+ },
+ {
+ quote: "We must balance conspicuous consumption with conscious capitalism.",
+ author: "Kevin Kruse",
+ },
+ {
+ quote: "Life is what happens to you while you’re busy making other plans.",
+ author: "John Lennon",
+ },
+ {
+ quote: "We become what we think about.",
+ author: "Earl Nightingale",
+ },
+ {
+ quote:
+ "Twenty years from now you will be more disappointed by the things that you didn’t do than by the ones you did do, so throw off the bowlines, sail away from safe harbor, catch the trade winds in your sails. Explore, Dream, Discover.",
+ author: "Mark Twain",
+ },
+ {
+ quote: "Life is 10% what happens to me and 90% of how I react to it.",
+ author: "Charles Swindoll",
+ },
+ {
+ quote:
+ "The most common way people give up their power is by thinking they don’t have any.",
+ author: "Alice Walker",
+ },
+ {
+ quote: "The mind is everything. What you think you become.",
+ author: "Buddha",
+ },
+ {
+ quote:
+ "The best time to plant a tree was 20 years ago. The second best time is now.",
+ author: "Chinese Proverb",
+ },
+ {
+ quote: "An unexamined life is not worth living.",
+ author: "Socrates",
+ },
+ {
+ quote: "Eighty percent of success is showing up.",
+ author: "Woody Allen",
+ },
+ {
+ quote:
+ "Your time is limited, so don’t waste it living someone else’s life.",
+ author: "Steve Jobs",
+ },
+ {
+ quote: "Winning isn’t everything, but wanting to win is.",
+ author: "Vince Lombardi",
+ },
+ {
+ quote:
+ "I am not a product of my circumstances. I am a product of my decisions.",
+ author: "Stephen Covey",
+ },
+ {
+ quote:
+ "Every child is an artist. The problem is how to remain an artist once he grows up.",
+ author: "Pablo Picasso",
+ },
+ {
+ quote:
+ "You can never cross the ocean until you have the courage to lose sight of the shore.",
+ author: "Christopher Columbus",
+ },
+ {
+ quote:
+ "I’ve learned that people will forget what you said, people will forget what you did, but people will never forget how you made them feel.",
+ author: "Maya Angelou",
+ },
+ {
+ quote: "Either you run the day, or the day runs you.",
+ author: "Jim Rohn",
+ },
+ {
+ quote: "Whether you think you can or you think you can’t, you’re right.",
+ author: "Henry Ford",
+ },
+ {
+ quote:
+ "The two most important days in your life are the day you are born and the day you find out why.",
+ author: "Mark Twain",
+ },
+ {
+ quote:
+ "Whatever you can do, or dream you can, begin it. Boldness has genius, power and magic in it.",
+ author: "Johann Wolfgang von Goethe",
+ },
+ {
+ quote: "The best revenge is massive success.",
+ author: "Frank Sinatra",
+ },
+ {
+ quote:
+ "People often say that motivation doesn’t last. Well, neither does bathing. That’s why we recommend it daily.",
+ author: "Zig Ziglar",
+ },
+ {
+ quote: "Life shrinks or expands in proportion to one’s courage.",
+ author: "Anais Nin",
+ },
+ {
+ quote:
+ "If you hear a voice within you say “you cannot paint,” then by all means paint and that voice will be silenced.",
+ author: "Vincent Van Gogh",
+ },
+ {
+ quote:
+ "There is only one way to avoid criticism: do nothing, say nothing, and be nothing.",
+ author: "Aristotle",
+ },
+ {
+ quote:
+ "Ask and it will be given to you; search, and you will find; knock and the door will be opened for you.",
+ author: "Jesus",
+ },
+ {
+ quote:
+ "The only person you are destined to become is the person you decide to be.",
+ author: "Ralph Waldo Emerson",
+ },
+ {
+ quote:
+ "Go confidently in the direction of your dreams. Live the life you have imagined.",
+ author: "Henry David Thoreau",
+ },
+ {
+ quote:
+ "When I stand before God at the end of my life, I would hope that I would not have a single bit of talent left and could say, I used everything you gave me.",
+ author: "Erma Bombeck",
+ },
+ {
+ quote:
+ "Few things can help an individual more than to place responsibility on him, and to let him know that you trust him.",
+ author: "Booker T. Washington",
+ },
+ {
+ quote:
+ "Certain things catch your eye, but pursue only those that capture the heart.",
+ author: " Ancient Indian Proverb",
+ },
+ {
+ quote: "Believe you can and you’re halfway there.",
+ author: "Theodore Roosevelt",
+ },
+ {
+ quote: "Everything you’ve ever wanted is on the other side of fear.",
+ author: "George Addair",
+ },
+ {
+ quote:
+ "We can easily forgive a child who is afraid of the dark; the real tragedy of life is when men are afraid of the light.",
+ author: "Plato",
+ },
+ {
+ quote:
+ "Teach thy tongue to say, “I do not know,” and thous shalt progress.",
+ author: "Maimonides",
+ },
+ {
+ quote: "Start where you are. Use what you have. Do what you can.",
+ author: "Arthur Ashe",
+ },
+ {
+ quote:
+ "When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up. I wrote down ‘happy’. They told me I didn’t understand the assignment, and I told them they didn’t understand life.",
+ author: "John Lennon",
+ },
+ {
+ quote: "Fall seven times and stand up eight.",
+ author: "Japanese Proverb",
+ },
+ {
+ quote:
+ "When one door of happiness closes, another opens, but often we look so long at the closed door that we do not see the one that has been opened for us.",
+ author: "Helen Keller",
+ },
+ {
+ quote: "Everything has beauty, but not everyone can see.",
+ author: "Confucius",
+ },
+ {
+ quote:
+ "How wonderful it is that nobody need wait a single moment before starting to improve the world.",
+ author: "Anne Frank",
+ },
+ {
+ quote: "When I let go of what I am, I become what I might be.",
+ author: "Lao Tzu",
+ },
+ {
+ quote:
+ "Life is not measured by the number of breaths we take, but by the moments that take our breath away.",
+ author: "Maya Angelou",
+ },
+ {
+ quote:
+ "Happiness is not something readymade. It comes from your own actions.",
+ author: "Dalai Lama",
+ },
+ {
+ quote:
+ "If you’re offered a seat on a rocket ship, don’t ask what seat! Just get on.",
+ author: "Sheryl Sandberg",
+ },
+ {
+ quote:
+ "First, have a definite, clear practical ideal; a goal, an objective. Second, have the necessary means to achieve your ends; wisdom, money, materials, and methods. Third, adjust all your means to that end.",
+ author: "Aristotle",
+ },
+ {
+ quote: "If the wind will not serve, take to the oars.",
+ author: "Latin Proverb",
+ },
+ {
+ quote:
+ "You can’t fall if you don’t climb. But there’s no joy in living your whole life on the ground.",
+ author: "Unknown",
+ },
+ {
+ quote:
+ "We must believe that we are gifted for something, and that this thing, at whatever cost, must be attained.",
+ author: "Marie Curie",
+ },
+ {
+ quote:
+ "Too many of us are not living our dreams because we are living our fears.",
+ author: "Les Brown",
+ },
+ {
+ quote:
+ "Challenges are what make life interesting and overcoming them is what makes life meaningful.",
+ author: "Joshua J. Marine",
+ },
+ {
+ quote: "If you want to lift yourself up, lift up someone else.",
+ author: "Booker T. Washington",
+ },
+ {
+ quote:
+ "I have been impressed with the urgency of doing. Knowing is not enough; we must apply. Being willing is not enough; we must do.",
+ author: "Leonardo da Vinci",
+ },
+ {
+ quote:
+ "Limitations live only in our minds. But if we use our imaginations, our possibilities become limitless.",
+ author: "Jamie Paolinetti",
+ },
+ {
+ quote:
+ "You take your life in your own hands, and what happens? A terrible thing, no one to blame.",
+ author: "Erica Jong",
+ },
+ {
+ quote:
+ "What’s money? A man is a success if he gets up in the morning and goes to bed at night and in between does what he wants to do.",
+ author: "Bob Dylan",
+ },
+ {
+ quote: "I didn’t fail the test. I just found 100 ways to do it wrong.",
+ author: "Benjamin Franklin",
+ },
+ {
+ quote:
+ "In order to succeed, your desire for success should be greater than your fear of failure.",
+ author: "Bill Cosby",
+ },
+ {
+ quote: "A person who never made a mistake never tried anything new.",
+ author: " Albert Einstein",
+ },
+ {
+ quote:
+ "The person who says it cannot be done should not interrupt the person who is doing it.",
+ author: "Chinese Proverb",
+ },
+ {
+ quote: "There are no traffic jams along the extra mile.",
+ author: "Roger Staubach",
+ },
+ {
+ quote: "It is never too late to be what you might have been.",
+ author: "George Eliot",
+ },
+ {
+ quote: "You become what you believe.",
+ author: "Oprah Winfrey",
+ },
+ {
+ quote: "I would rather die of passion than of boredom.",
+ author: "Vincent van Gogh",
+ },
+ {
+ quote:
+ "A truly rich man is one whose children run into his arms when his hands are empty.",
+ author: "Unknown",
+ },
+ {
+ quote:
+ "It is not what you do for your children, but what you have taught them to do for themselves, that will make them successful human beings.",
+ author: "Ann Landers",
+ },
+ {
+ quote:
+ "If you want your children to turn out well, spend twice as much time with them, and half as much money.",
+ author: "Abigail Van Buren",
+ },
+ {
+ quote:
+ "Build your own dreams, or someone else will hire you to build theirs.",
+ author: "Farrah Gray",
+ },
+ {
+ quote:
+ "The battles that count aren’t the ones for gold medals. The struggles within yourself–the invisible battles inside all of us–that’s where it’s at.",
+ author: "Jesse Owens",
+ },
+ {
+ quote: "Education costs money. But then so does ignorance.",
+ author: "Sir Claus Moser",
+ },
+ {
+ quote:
+ "I have learned over the years that when one’s mind is made up, this diminishes fear.",
+ author: "Rosa Parks",
+ },
+ {
+ quote: "It does not matter how slowly you go as long as you do not stop.",
+ author: "Confucius",
+ },
+ {
+ quote:
+ "If you look at what you have in life, you’ll always have more. If you look at what you don’t have in life, you’ll never have enough.",
+ author: "Oprah Winfrey",
+ },
+ {
+ quote:
+ "Remember that not getting what you want is sometimes a wonderful stroke of luck.",
+ author: "Dalai Lama",
+ },
+ {
+ quote: "You can’t use up creativity. The more you use, the more you have.",
+ author: "Maya Angelou",
+ },
+ {
+ quote: "Dream big and dare to fail.",
+ author: "Norman Vaughan",
+ },
+ {
+ quote:
+ "Our lives begin to end the day we become silent about things that matter.",
+ author: "Martin Luther King Jr.",
+ },
+ {
+ quote: "Do what you can, where you are, with what you have.",
+ author: "Teddy Roosevelt",
+ },
+ {
+ quote:
+ "If you do what you’ve always done, you’ll get what you’ve always gotten.",
+ author: "Tony Robbins",
+ },
+ {
+ quote: "Dreaming, after all, is a form of planning.",
+ author: "Gloria Steinem",
+ },
+ {
+ quote:
+ "It’s your place in the world; it’s your life. Go on and do all you can with it, and make it the life you want to live.",
+ author: "Mae Jemison",
+ },
+ {
+ quote:
+ "You may be disappointed if you fail, but you are doomed if you don’t try.",
+ author: "Beverly Sills",
+ },
+ {
+ quote: "Remember no one can make you feel inferior without your consent.",
+ author: "Eleanor Roosevelt",
+ },
+ {
+ quote: "Life is what we make it, always has been, always will be.",
+ author: "Grandma Moses",
+ },
+ {
+ quote:
+ "The question isn’t who is going to let me; it’s who is going to stop me.",
+ author: "Ayn Rand",
+ },
+ {
+ quote:
+ "When everything seems to be going against you, remember that the airplane takes off against the wind, not with it.",
+ author: "Henry Ford",
+ },
+ {
+ quote:
+ "It’s not the years in your life that count. It’s the life in your years.",
+ author: "Abraham Lincoln",
+ },
+ {
+ quote: "Change your thoughts and you change your world.",
+ author: "Norman Vincent Peale",
+ },
+ {
+ quote:
+ "Either write something worth reading or do something worth writing.",
+ author: "Benjamin Franklin",
+ },
+ {
+ quote: "Nothing is impossible, the word itself says, “I’m possible!”",
+ author: "–Audrey Hepburn",
+ },
+ {
+ quote: "The only way to do great work is to love what you do.",
+ author: "Steve Jobs",
+ },
+ {
+ quote: "If you can dream it, you can achieve it.",
+ author: "Zig Ziglar",
+ },
];
+let quotesList = document.querySelector(".list-of-quotes");
+let randomNumber = Math.floor(Math.random() * quotes.length);
+let displayedQuote = `" ${quotes[randomNumber].quote} " - by ${quotes[randomNumber].author}`;
+quotesList.textContent = displayedQuote;
+function newQuote() {
+ setInterval(() => {}, 1000);
+}
+
+let buttonElement = document.querySelector(".myBtn");
+buttonElement.addEventListener("click", newQuote);
+function refreshPage() {
+ window.location.reload();
+}
diff --git a/Week-3/Homework/mandatory/2-quotegenerator/style.css b/Week-3/Homework/mandatory/2-quotegenerator/style.css
index 63cedf2..f638ec6 100644
--- a/Week-3/Homework/mandatory/2-quotegenerator/style.css
+++ b/Week-3/Homework/mandatory/2-quotegenerator/style.css
@@ -1 +1,27 @@
/** Write your CSS in here **/
+div {
+ /*background-color: darkgreen;*/
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ align-content: center;
+ border-style: solid;
+ border-width: 40px;
+ font-size: 20px;
+ padding: 50px;
+ border-color: darkmagenta;
+ margin-top: 100px;
+ margin-left: 50px;
+ margin-bottom: 10px;
+ margin-right: 50px;
+}
+.myBtn {
+ float: right;
+ margin: 100px;
+ background-color: rgb(69, 219, 9);
+ color: #fff;
+ padding: 10px;
+ font-size: 20px;
+ width: 150px;
+}
diff --git a/Week-3/Homework/mandatory/3-slideshow/images/image-1.jpg b/Week-3/Homework/mandatory/3-slideshow/images/image-1.jpg
new file mode 100644
index 0000000..aaf8cb5
Binary files /dev/null and b/Week-3/Homework/mandatory/3-slideshow/images/image-1.jpg differ
diff --git a/Week-3/Homework/mandatory/3-slideshow/images/image-2.jpg b/Week-3/Homework/mandatory/3-slideshow/images/image-2.jpg
new file mode 100644
index 0000000..39672b9
Binary files /dev/null and b/Week-3/Homework/mandatory/3-slideshow/images/image-2.jpg differ
diff --git a/Week-3/Homework/mandatory/3-slideshow/images/image-3.jpg b/Week-3/Homework/mandatory/3-slideshow/images/image-3.jpg
new file mode 100644
index 0000000..eb1bf31
Binary files /dev/null and b/Week-3/Homework/mandatory/3-slideshow/images/image-3.jpg differ
diff --git a/Week-3/Homework/mandatory/3-slideshow/images/image-4.jpg b/Week-3/Homework/mandatory/3-slideshow/images/image-4.jpg
new file mode 100644
index 0000000..07e66b3
Binary files /dev/null and b/Week-3/Homework/mandatory/3-slideshow/images/image-4.jpg differ
diff --git a/Week-3/Homework/mandatory/3-slideshow/images/image-5.jpg b/Week-3/Homework/mandatory/3-slideshow/images/image-5.jpg
new file mode 100644
index 0000000..7e28321
Binary files /dev/null and b/Week-3/Homework/mandatory/3-slideshow/images/image-5.jpg differ
diff --git a/Week-3/Homework/mandatory/3-slideshow/images/image-6.jpg b/Week-3/Homework/mandatory/3-slideshow/images/image-6.jpg
new file mode 100644
index 0000000..47c14d6
Binary files /dev/null and b/Week-3/Homework/mandatory/3-slideshow/images/image-6.jpg differ
diff --git a/Week-3/Homework/mandatory/3-slideshow/index.html b/Week-3/Homework/mandatory/3-slideshow/index.html
index 39cd40e..06c21de 100644
--- a/Week-3/Homework/mandatory/3-slideshow/index.html
+++ b/Week-3/Homework/mandatory/3-slideshow/index.html
@@ -1,17 +1,26 @@
-
- Slideshow
-
-
-
-
-
-
-
+
+ Slideshow
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Week-3/Homework/mandatory/3-slideshow/slideshow.js b/Week-3/Homework/mandatory/3-slideshow/slideshow.js
index b55091c..4e64592 100644
--- a/Week-3/Homework/mandatory/3-slideshow/slideshow.js
+++ b/Week-3/Homework/mandatory/3-slideshow/slideshow.js
@@ -1 +1,48 @@
// Write your code here
+let i = 0;
+let imgages = [];
+imgages[0] = "images/image-1.jpg";
+imgages[1] = "images/image-2.jpg";
+imgages[2] = "images/image-3.jpg";
+imgages[3] = "images/image-4.jpg";
+imgages[4] = "images/image-5.jpg";
+imgages[5] = "images/image-6.jpg";
+let forwardButton = document.querySelector(".forwardBtn");
+let displayImage = document.querySelector(".myImages");
+function displayNext() {
+ forwardButton.style.backgroundColor = "red";
+ if (i < imgages.length) {
+ displayImage.src = imgages[i];
+ i++;
+ }
+}
+forwardButton.addEventListener("click", displayNext);
+let backwardButton = document.querySelector(".backwardBtn");
+function displayPrevious() {
+ if (i > 0 && i <= imgages.length) {
+ displayImage.src = imgages[i];
+ i--;
+ }
+}
+backwardButton.addEventListener("click", displayPrevious);
+let autoForwardBtn = document.querySelector(".autoForwardBtn");
+function autoDisplayForward() {
+ setInterval(() => {
+ if (i < imgages.length) {
+ displayImage.src = imgages[i];
+ i++;
+ }
+ }, 3000);
+}
+autoForwardBtn.addEventListener("click", autoDisplayForward);
+let autoBackwardBtn = document.querySelector(".autoBackwardBtn");
+function autoDisplayBackward() {
+ setInterval(() => {
+ if (i > 0 && i <= imgages.length) {
+ displayImage.src = imgages[i];
+ i--;
+ }
+ }, 2500);
+}
+autoBackwardBtn.addEventListener("click", autoDisplayBackward);
+
diff --git a/Week-3/Homework/mandatory/3-slideshow/style.css b/Week-3/Homework/mandatory/3-slideshow/style.css
index 63cedf2..4cce6d6 100644
--- a/Week-3/Homework/mandatory/3-slideshow/style.css
+++ b/Week-3/Homework/mandatory/3-slideshow/style.css
@@ -1 +1,10 @@
/** Write your CSS in here **/
+.myImages {
+ margin-top: 100px;
+ margin-left: 100px;
+ width: 414px;
+ height: 350px;
+}
+.myButtons {
+ margin-left: 100px;
+}
diff --git a/Week-3/InClass/Callbacks/exercise-1/exercise.js b/Week-3/InClass/Callbacks/exercise-1/exercise.js
index 40f06b0..e45591e 100644
--- a/Week-3/InClass/Callbacks/exercise-1/exercise.js
+++ b/Week-3/InClass/Callbacks/exercise-1/exercise.js
@@ -4,10 +4,31 @@ EXERCISE 1
Task 1
Using setTimeout, change the background colour of the page after 5 seconds (5000 milliseconds).
-
+*/
+let pageBody = document.querySelector("body");
+setTimeout(myFunction, 5000);
+function myFunction() {
+ pageBody.style.backgroundColor = "#5d0a3f";
+}
+/*
Task 2
Update your code to make the colour change every 5 seconds to something different. Hint: try searching for setInterval. Complete the exercises in this CodePen
Prefer to work on a codepen? https://codepen.io/makanti/pen/abOreLg
================
-*/
\ No newline at end of file
+*/
+let colours = [
+ "green",
+ "red",
+ "blue",
+ "yellow",
+ "cyan",
+ "indigo",
+ "orange",
+ "pink",
+];
+function changeColours() {
+ let randomColors = Math.floor(Math.random() * colours.length);
+ pageBody.style.backgroundColor = colours[randomColors];
+}
+setInterval(changeColours, 5000);
diff --git a/Week-3/InClass/Callbacks/exercise-2/exercise.js b/Week-3/InClass/Callbacks/exercise-2/exercise.js
index eca9595..1370c4d 100644
--- a/Week-3/InClass/Callbacks/exercise-2/exercise.js
+++ b/Week-3/InClass/Callbacks/exercise-2/exercise.js
@@ -9,7 +9,9 @@ Create a function called "showMovies" that
- iterates through the "movies" array and
- for each movie, it creates a
element with the movie title and director and append it to the #all-movies div.
- it sets the innerText of the #movies-number element to the total number of the movies in the array "movies"
+*/
+/*
Task 2
Amend your function above to only show movies after 1 second. Remember to use setTimeout to achieve that
Create a new function called "addMovie"
@@ -17,11 +19,15 @@ Create a new function called "addMovie"
- it adds the new movie to the list of movies after 2 seconds. Remember to setTimeout to achieve that
Call addMovies to add the new movie to the list and then showMovies to see the movies added on the screen.
How many movies can you see on your page?
+*/
+/*
Task 3
Can you make sure the new movie you just added is showing on the screen?
TIP: use callbacks
+*/
+/*
Task 4 - **Extra**
Create a form anywhere on your page. The form should have
- 4 input text fields, one for each property of your movie object
@@ -35,36 +41,55 @@ Prefer to work on a codepen? https://codepen.io/makanti/pen/MWwMgmW?editors
================
*/
const movies = [
- {
- title: "Color Out of Space",
- director: "Richard Stanley",
- type: "sci-fi",
- haveWatched: true,
- },
- {
- title: "A Twelve-Year Night",
- director: "Álvaro Brechner",
- type: "horror",
- haveWatched: false,
- },
- {
- title: "The Whistlers",
- director: "Corneliu Porumboiu",
- type: "comedy",
- haveWatched: true,
- },
- {
- title: "The Invisible Man",
- director: "Leigh Whannell",
- type: "horror",
- haveWatched: false,
- },
+ {
+ title: "Color Out of Space",
+ director: "Richard Stanley",
+ type: "sci-fi",
+ haveWatched: true,
+ },
+ {
+ title: "A Twelve-Year Night",
+ director: "Álvaro Brechner",
+ type: "horror",
+ haveWatched: false,
+ },
+ {
+ title: "The Whistlers",
+ director: "Corneliu Porumboiu",
+ type: "comedy",
+ haveWatched: true,
+ },
+ {
+ title: "The Invisible Man",
+ director: "Leigh Whannell",
+ type: "horror",
+ haveWatched: false,
+ },
];
// create showMovies function
+let allMovies = document.querySelector("#all-movies");
+function showMovies(movies) {
+ setTimeout(function () {
+ movies.forEach((movie) => {
+ let pElement = document.createElement("p");
+ pElement.textContent = `${movie.title} by ${movie.director}`;
+ allMovies.appendChild(pElement);
+ });
+ }, 1000);
+}
+let numberOfAllMovies = document.querySelector("#movies-number");
+numberOfAllMovies.innerText = movies.length;
+console.log(showMovies(movies));
+console.log(numberOfAllMovies);
// create a new movie object for your favorite movie
-
-
+let newMovie = {
+ title: "let It Shine",
+ Director: "Paul Hoen",
+ type: "Musical",
+ haveWatched: true,
+};
// create addMovies function
+