├── Day 1 ├── Intro to JS.pdf ├── Intro to Mentors.pptx ├── mypage.html └── script.js ├── Day 11 └── demo.html ├── Day 2 ├── Programming Fundamentals in JS.pdf └── Programming fundamentals in JS.html ├── Day 3 └── DOM.pdf ├── Day 4 ├── Day 4 Examples discussed .pdf ├── ES6.pdf └── quiz.txt ├── Day 5 ├── Day 5 Quiz.xlsx ├── debugging.pdf └── quiz │ ├── index.html │ └── script.js ├── Day 6 ├── Day 6 Questions.xlsx └── index.html ├── Day 7 ├── Day7.pdf ├── callback1.html ├── callback2.html ├── promise1.html ├── promise2.html ├── promise3syc.html ├── promise4runtimeerror.html ├── promise5error.html ├── promise6nested.html ├── promise7.html ├── promise8all.html └── promise9async.html ├── Day 8 └── Animation.pptx ├── Day 9 ├── Api.pptx.pdf ├── ZonAnn.Ts+dSST.csv ├── rainbow.jpg ├── testapi.html ├── testcsv.html ├── testdata.csv └── testimage.html ├── Quiz Results ├── Day 1 EOP JS.jpg ├── Day 2 EOP JS.jpg ├── Day 3 EOP JS.jpg ├── Day 4 EOP JS.jpg └── Day 5 EOP JS.jpg └── README.md /Day 1/Intro to JS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanisha03/Journey-with-JS/2a83f5eb414b42752ab13eff318d5a43285817b4/Day 1/Intro to JS.pdf -------------------------------------------------------------------------------- /Day 1/Intro to Mentors.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanisha03/Journey-with-JS/2a83f5eb414b42752ab13eff318d5a43285817b4/Day 1/Intro to Mentors.pptx -------------------------------------------------------------------------------- /Day 1/mypage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Content of the HTML webpage 4 | 6 | 7 | -------------------------------------------------------------------------------- /Day 1/script.js: -------------------------------------------------------------------------------- 1 | let x = prompt("Enter first number") 2 | x = Number(x) 3 | let y = prompt("Enter second number") 4 | y = Number(y) 5 | alert(x + y) -------------------------------------------------------------------------------- /Day 11/demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 17 | 22 | Document 23 | 24 | 25 |
26 |
27 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /Day 2/Programming Fundamentals in JS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanisha03/Journey-with-JS/2a83f5eb414b42752ab13eff318d5a43285817b4/Day 2/Programming Fundamentals in JS.pdf -------------------------------------------------------------------------------- /Day 3/DOM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanisha03/Journey-with-JS/2a83f5eb414b42752ab13eff318d5a43285817b4/Day 3/DOM.pdf -------------------------------------------------------------------------------- /Day 4/Day 4 Examples discussed .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanisha03/Journey-with-JS/2a83f5eb414b42752ab13eff318d5a43285817b4/Day 4/Day 4 Examples discussed .pdf -------------------------------------------------------------------------------- /Day 4/ES6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanisha03/Journey-with-JS/2a83f5eb414b42752ab13eff318d5a43285817b4/Day 4/ES6.pdf -------------------------------------------------------------------------------- /Day 4/quiz.txt: -------------------------------------------------------------------------------- 1 | When was Es6 released? 2 | 2010 3 | 2015 // 4 | 2016 5 | 2019 6 | 7 | Which one of these is true: 8 | var is block scoped 9 | const values can be changed 10 | let is block scoped // 11 | 12 | What is the syntax for Template strings: 13 | "Hello name, how are you?" 14 | "Hello" + name + " , how are you? " 15 | "Hello" + ${name} + ", how are you?" 16 | `Hello ${name}, how are you?` // 17 | 18 | What is syntax for arrow functions: 19 | ()->{} 20 | ()=>{} // 21 | function (){} 22 | function ()=>{} 23 | 24 | Can we use destructuring on objects? 25 | true // 26 | false 27 | 28 | Can we use destructuring on arrays? 29 | true // 30 | false 31 | 32 | We can only have fixed number of arguements in JS functions. True or False? 33 | true 34 | false // 35 | 36 | Can we use spread operator ... for making separate copy of objects? 37 | true // 38 | false 39 | 40 | What is ... 41 | Rest parameter syntax 42 | Spread operator 43 | Both // 44 | None of these 45 | 46 | Rest parameter syntax and Spread operator look similar 47 | true // 48 | false 49 | 50 | How do you call Parent class's constructor? 51 | this 52 | super() // 53 | superConstructor() 54 | parent.constructor() 55 | 56 | Feedback question 57 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /Day 5/Day 5 Quiz.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanisha03/Journey-with-JS/2a83f5eb414b42752ab13eff318d5a43285817b4/Day 5/Day 5 Quiz.xlsx -------------------------------------------------------------------------------- /Day 5/debugging.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanisha03/Journey-with-JS/2a83f5eb414b42752ab13eff318d5a43285817b4/Day 5/debugging.pdf -------------------------------------------------------------------------------- /Day 5/quiz/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Quiz For GirlScript 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 |

16 |
17 | 18 | 19 | 20 | 21 |
22 |
23 |
24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Day 5/quiz/script.js: -------------------------------------------------------------------------------- 1 | // create questions here 2 | var questions = [ 3 | new Question("Hyper Text Markup Language Stand For?", ["JavaScript", "XHTML", "CSS", "HTML"], "HTML"), 4 | new Question("Which language is used for styling web pages?", ["HTML", "JQuery", "CSS", "XML"], "CSS"), 5 | new Question("Which is not a JavaScript Framework?", ["Python Script", "JQuery", "Django", "NodeJS"], "Django"), 6 | new Question("Which is used for Connect To Database?", ["PHP", "HTML", "JS", "All"], "PHP"), 7 | new Question("Webdevtrick.com is about..", ["Web Design", "Graphic Design", "SEO & Development", "All"], "All") 8 | ]; 9 | 10 | 11 | function Question(text, choices, answer) { 12 | this.text = text; 13 | this.choices = choices; 14 | this.answer = answer; 15 | } 16 | 17 | Question.prototype.isCorrectAnswer = function(choice) { 18 | return this.answer === choice; 19 | } 20 | // create quiz 21 | var quiz = new Quiz(questions); 22 | 23 | function Quiz(questions) { 24 | this.score = 0; 25 | this.questions = questions; 26 | this.questionIndex = 0; 27 | } 28 | 29 | Quiz.prototype.getQuestionIndex = function() { 30 | return this.questions[this.questionIndex]; 31 | } 32 | 33 | Quiz.prototype.guess = function(answer) { 34 | if (this.getQuestionIndex().isCorrectAnswer(answer)) { 35 | this.score++; 36 | } 37 | 38 | this.questionIndex++; 39 | } 40 | 41 | Quiz.prototype.isEnded = function() { 42 | return this.questionIndex === this.questions.length; 43 | } 44 | 45 | 46 | 47 | function displayQuiz() { 48 | if (quiz.isEnded()) { 49 | showScores(); 50 | } else { 51 | // show question 52 | var element = document.getElementById("question"); 53 | element.innerHTML = quiz.getQuestionIndex().text; 54 | 55 | // show options 56 | var choices = quiz.getQuestionIndex().choices; 57 | for (var i = 0; i < choices.length; i++) { 58 | var element = document.getElementById("choice" + i); 59 | element.innerHTML = choices[i]; 60 | guess("btn" + i, choices[i]); 61 | } 62 | } 63 | }; 64 | 65 | function guess(id, guess) { 66 | var button = document.getElementById(id); 67 | button.onclick = function() { 68 | quiz.guess(guess); 69 | displayQuiz(); 70 | } 71 | }; 72 | 73 | 74 | function showScores() { 75 | var gameOverHTML = "

Result

"; 76 | gameOverHTML += "

Your scores: " + quiz.score + "

"; 77 | var element = document.getElementById("quiz"); 78 | element.innerHTML = gameOverHTML; 79 | }; 80 | 81 | // display quiz 82 | displayQuiz(); -------------------------------------------------------------------------------- /Day 6/Day 6 Questions.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanisha03/Journey-with-JS/2a83f5eb414b42752ab13eff318d5a43285817b4/Day 6/Day 6 Questions.xlsx -------------------------------------------------------------------------------- /Day 6/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
Hello World
4 | 5 | 6 | 148 | -------------------------------------------------------------------------------- /Day 7/Day7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanisha03/Journey-with-JS/2a83f5eb414b42752ab13eff318d5a43285817b4/Day 7/Day7.pdf -------------------------------------------------------------------------------- /Day 7/callback1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /Day 7/callback2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /Day 7/promise1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /Day 7/promise2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /Day 7/promise3syc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /Day 7/promise4runtimeerror.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Day 7/promise5error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Day 7/promise6nested.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /Day 7/promise7.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /Day 7/promise8all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /Day 7/promise9async.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /Day 8/Animation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanisha03/Journey-with-JS/2a83f5eb414b42752ab13eff318d5a43285817b4/Day 8/Animation.pptx -------------------------------------------------------------------------------- /Day 9/Api.pptx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanisha03/Journey-with-JS/2a83f5eb414b42752ab13eff318d5a43285817b4/Day 9/Api.pptx.pdf -------------------------------------------------------------------------------- /Day 9/ZonAnn.Ts+dSST.csv: -------------------------------------------------------------------------------- 1 | Year,Glob,NHem,SHem,24N-90N,24S-24N,90S-24S,64N-90N,44N-64N,24N-44N,EQU-24N,24S-EQU,44S-24S,64S-44S,90S-64S 2 | 1880,-.18,-.31,-.06,-.38,-.17,-.01,-.97,-.47,-.25,-.21,-.13,-.04,.05,.67 3 | 1881,-.10,-.19,-.01,-.32,.05,-.07,-.91,-.46,-.14,.03,.07,-.06,-.07,.60 4 | 1882,-.11,-.21,-.01,-.28,-.07,.02,-1.49,-.27,-.08,-.09,-.05,.02,.04,.63 5 | 1883,-.19,-.31,-.06,-.36,-.21,.01,-.35,-.59,-.22,-.24,-.17,-.01,.07,.50 6 | 1884,-.29,-.43,-.15,-.56,-.21,-.13,-1.32,-.59,-.40,-.23,-.19,-.19,-.02,.65 7 | 1885,-.31,-.40,-.24,-.58,-.15,-.25,-1.18,-.66,-.42,-.09,-.22,-.31,-.15,.82 8 | 1886,-.32,-.41,-.24,-.51,-.25,-.22,-1.25,-.49,-.39,-.24,-.26,-.22,-.20,.59 9 | 1887,-.35,-.41,-.30,-.46,-.32,-.28,-1.57,-.48,-.25,-.31,-.33,-.28,-.26,.32 10 | 1888,-.18,-.23,-.14,-.42,.07,-.29,-1.48,-.44,-.20,.07,.08,-.32,-.23,.16 11 | 1889,-.11,-.17,-.06,-.28,.05,-.16,-.86,-.21,-.21,.00,.10,-.16,-.15,.45 12 | 1890,-.37,-.42,-.33,-.47,-.42,-.22,-1.29,-.55,-.25,-.34,-.50,-.18,-.27,.15 13 | 1891,-.23,-.26,-.21,-.41,-.12,-.21,-1.28,-.29,-.31,-.03,-.21,-.18,-.24,-.15 14 | 1892,-.27,-.37,-.16,-.40,-.30,-.08,-1.32,-.59,-.10,-.33,-.28,.02,-.22,.09 15 | 1893,-.32,-.45,-.19,-.47,-.39,-.07,-.91,-.51,-.35,-.42,-.36,.03,-.21,-.04 16 | 1894,-.31,-.38,-.24,-.32,-.35,-.25,-1.37,-.26,-.11,-.48,-.23,-.16,-.35,-.37 17 | 1895,-.23,-.29,-.16,-.38,-.09,-.26,-.96,-.45,-.19,-.14,-.03,-.21,-.32,-.58 18 | 1896,-.11,-.20,-.03,-.36,.09,-.15,-1.25,-.35,-.15,.05,.13,-.15,-.13,.26 19 | 1897,-.12,-.17,-.07,-.34,.14,-.24,-.79,-.39,-.20,.10,.17,-.21,-.28,.41 20 | 1898,-.28,-.29,-.28,-.32,-.27,-.27,-1.25,-.16,-.20,-.24,-.29,-.29,-.21,.38 21 | 1899,-.19,-.21,-.16,-.21,-.16,-.20,-1.12,.00,-.13,-.20,-.12,-.18,-.22,.59 22 | 1900,-.09,-.09,-.09,-.19,.13,-.31,-.65,-.08,-.13,.07,.19,-.30,-.29,.27 23 | 1901,-.16,-.10,-.21,-.12,-.07,-.31,-.59,-.03,-.07,-.06,-.07,-.29,-.34,.26 24 | 1902,-.30,-.35,-.25,-.53,-.09,-.36,-1.64,-.42,-.32,-.07,-.12,-.30,-.43,-.04 25 | 1903,-.39,-.39,-.39,-.48,-.33,-.39,-.53,-.38,-.52,-.26,-.39,-.37,-.40,-.47 26 | 1904,-.49,-.50,-.49,-.51,-.52,-.44,-.31,-.56,-.53,-.48,-.56,-.39,-.49,-1.29 27 | 1905,-.29,-.31,-.26,-.39,-.15,-.36,-.20,-.18,-.59,-.17,-.13,-.34,-.37,-.31 28 | 1906,-.23,-.23,-.23,-.23,-.22,-.23,-.41,.00,-.34,-.23,-.21,-.21,-.23,-.69 29 | 1907,-.40,-.47,-.32,-.57,-.34,-.30,-.76,-.69,-.46,-.31,-.36,-.22,-.37,-1.17 30 | 1908,-.43,-.46,-.42,-.47,-.46,-.35,-.45,-.50,-.46,-.43,-.50,-.29,-.48,.70 31 | 1909,-.47,-.47,-.48,-.49,-.49,-.44,-.82,-.51,-.40,-.44,-.54,-.38,-.52,-.54 32 | 1910,-.43,-.44,-.43,-.39,-.51,-.37,-.72,-.16,-.46,-.51,-.51,-.32,-.45,.19 33 | 1911,-.43,-.40,-.47,-.38,-.44,-.47,-.36,-.36,-.41,-.41,-.46,-.43,-.52,.08 34 | 1912,-.36,-.45,-.25,-.57,-.19,-.35,-.64,-.71,-.47,-.27,-.12,-.35,-.29,-1.61 35 | 1913,-.35,-.43,-.27,-.41,-.32,-.34,-.66,-.25,-.46,-.46,-.18,-.27,-.40,-1.01 36 | 1914,-.16,-.19,-.12,-.23,-.08,-.18,-.59,-.07,-.25,-.13,-.04,-.16,-.18,-.34 37 | 1915,-.12,-.11,-.13,-.18,-.01,-.21,-.59,-.06,-.15,.01,-.03,-.14,-.23,-1.96 38 | 1916,-.33,-.36,-.31,-.29,-.44,-.21,-.32,-.43,-.20,-.46,-.42,-.21,-.17,-1.02 39 | 1917,-.44,-.54,-.35,-.41,-.65,-.18,-.65,-.37,-.39,-.72,-.58,-.22,-.09,.09 40 | 1918,-.28,-.37,-.20,-.38,-.33,-.13,-1.19,-.16,-.29,-.35,-.30,-.06,-.22,-.25 41 | 1919,-.27,-.33,-.20,-.40,-.20,-.22,-.85,-.44,-.27,-.22,-.18,-.15,-.32,.22 42 | 1920,-.25,-.25,-.25,-.19,-.26,-.31,.02,-.07,-.31,-.36,-.16,-.18,-.48,-1.12 43 | 1921,-.17,-.07,-.28,.06,-.25,-.31,-.03,.27,-.05,-.26,-.24,-.23,-.38,-.81 44 | 1922,-.27,-.24,-.30,-.20,-.32,-.27,-.39,-.30,-.09,-.30,-.33,-.25,-.28,-.25 45 | 1923,-.24,-.18,-.30,-.10,-.28,-.33,.13,-.03,-.22,-.29,-.27,-.26,-.41,-.52 46 | 1924,-.25,-.14,-.35,-.09,-.24,-.42,.28,-.15,-.17,-.22,-.26,-.39,-.46,-.51 47 | 1925,-.20,-.10,-.30,.00,-.23,-.37,-.16,.27,-.13,-.25,-.21,-.24,-.54,-.84 48 | 1926,-.08,.05,-.20,.06,.04,-.40,.49,.26,-.19,.03,.06,-.35,-.45,-.61 49 | 1927,-.20,-.10,-.29,-.10,-.13,-.38,-.04,-.12,-.11,-.09,-.17,-.31,-.45,-1.36 50 | 1928,-.19,-.07,-.30,-.04,-.15,-.39,.60,-.07,-.20,-.11,-.18,-.29,-.48,-2.10 51 | 1929,-.34,-.30,-.38,-.34,-.27,-.45,.02,-.51,-.34,-.24,-.30,-.42,-.44,-1.05 52 | 1930,-.14,.02,-.29,.09,-.09,-.43,.44,.16,-.07,-.07,-.12,-.34,-.47,-2.57 53 | 1931,-.10,.05,-.23,.03,.05,-.43,.41,.09,-.12,.08,.01,-.42,-.40,-.39 54 | 1932,-.16,-.05,-.27,.05,-.19,-.34,.23,.31,-.17,-.19,-.18,-.21,-.53,-.96 55 | 1933,-.30,-.26,-.33,-.24,-.31,-.34,-.43,-.38,-.10,-.29,-.32,-.22,-.49,-1.12 56 | 1934,-.14,-.01,-.27,.18,-.28,-.26,.65,.41,-.10,-.28,-.28,-.16,-.38,-.54 57 | 1935,-.20,-.09,-.32,-.02,-.21,-.38,.19,.06,-.13,-.18,-.24,-.31,-.42,-1.69 58 | 1936,-.16,-.04,-.28,-.03,-.15,-.30,.14,.19,-.22,-.05,-.25,-.27,-.33,-.01 59 | 1937,-.04,.12,-.20,.18,-.07,-.22,.97,.10,.01,.03,-.16,-.20,-.25,.39 60 | 1938,-.03,.12,-.21,.34,-.26,-.10,1.09,.45,.05,-.19,-.34,-.06,-.11,-.84 61 | 1939,-.03,.08,-.15,.23,-.16,-.13,.45,.35,.10,-.13,-.18,-.05,-.19,-1.58 62 | 1940,.11,.17,.07,.11,.25,-.07,.86,.06,-.07,.25,.25,.03,-.20,-.03 63 | 1941,.18,.24,.15,.02,.47,-.05,-.23,-.04,.12,.55,.40,.03,-.15,-.44 64 | 1942,.05,.11,.00,.09,.07,-.01,.25,-.01,.10,.13,.02,.06,-.05,-.87 65 | 1943,.07,.15,-.02,.32,-.10,.04,1.08,.29,.13,-.10,-.09,.07,.00,1.16 66 | 1944,.21,.27,.15,.37,.19,.07,.94,.51,.12,.13,.26,.19,-.09,-.21 67 | 1945,.09,.09,.09,.08,.18,-.02,.36,-.02,.06,.12,.23,.04,.00,-1.85 68 | 1946,-.07,.04,-.17,.06,-.05,-.24,-.22,-.01,.19,-.01,-.09,-.22,-.24,.02 69 | 1947,-.04,.06,-.14,.12,-.07,-.15,.85,-.12,.05,-.02,-.11,-.19,-.08,.03 70 | 1948,-.10,-.01,-.20,.13,-.20,-.21,.07,.34,.02,-.22,-.17,-.19,-.19,-1.01 71 | 1949,-.10,-.03,-.18,.11,-.20,-.19,.13,.17,.06,-.23,-.17,-.17,-.14,-1.28 72 | 1950,-.18,-.17,-.20,-.09,-.29,-.12,-.01,-.32,.03,-.30,-.29,-.06,-.16,-.72 73 | 1951,-.06,.05,-.17,.08,-.06,-.20,-.02,.03,.14,.00,-.13,-.22,-.16,-.18 74 | 1952,.01,.06,-.03,.09,.01,-.08,.11,-.07,.19,.00,.03,-.09,-.02,-.38 75 | 1953,.07,.23,-.08,.33,.07,-.19,.81,.36,.17,.08,.05,-.08,-.24,-1.34 76 | 1954,-.15,-.04,-.25,.02,-.22,-.21,.51,-.21,.01,-.14,-.30,-.17,-.20,-.77 77 | 1955,-.14,-.10,-.20,.02,-.33,-.05,-.45,-.08,.23,-.29,-.38,-.16,-.08,1.27 78 | 1956,-.20,-.26,-.16,-.25,-.33,.00,-.29,-.47,-.09,-.28,-.37,-.13,.02,.67 79 | 1957,.04,.04,.04,.03,.07,.01,.03,.23,-.09,.06,.09,-.09,-.01,.45 80 | 1958,.07,.17,-.03,.11,.20,-.15,-.11,.18,.13,.27,.14,-.09,-.08,-.55 81 | 1959,.03,.11,-.06,.15,.07,-.16,.42,.17,.04,.07,.08,-.03,-.26,-.37 82 | 1960,-.02,.08,-.12,.09,.03,-.20,.32,-.06,.11,.07,-.01,-.10,-.07,-.79 83 | 1961,.05,.08,.02,.18,-.03,.04,-.16,.37,.17,-.06,.01,.14,-.18,.14 84 | 1962,.04,.15,-.08,.29,-.05,-.10,.64,.33,.15,-.04,-.05,.09,-.07,-.81 85 | 1963,.07,.16,-.02,.17,.12,-.10,-.01,.33,.13,.14,.10,-.11,-.17,.08 86 | 1964,-.20,-.19,-.20,-.24,-.13,-.24,-.66,-.22,-.11,-.13,-.14,-.30,-.07,-.38 87 | 1965,-.10,-.13,-.08,-.16,-.03,-.14,-.18,-.23,-.11,-.07,.01,-.23,-.03,-.08 88 | 1966,-.05,.00,-.09,-.12,.08,-.15,-.69,-.16,.07,.17,.00,-.23,-.14,.13 89 | 1967,-.02,.03,-.08,.13,-.14,-.01,.46,.26,-.07,-.11,-.17,-.09,-.02,.28 90 | 1968,-.08,-.06,-.09,-.09,-.05,-.09,-.22,-.02,-.09,-.01,-.09,-.14,.00,-.11 91 | 1969,.07,-.01,.15,-.26,.33,.04,.05,-.59,-.16,.35,.31,.00,.13,.01 92 | 1970,.03,-.03,.09,-.10,.07,.12,-.17,-.13,-.06,.07,.06,.10,.03,.36 93 | 1971,-.09,-.16,-.03,-.06,-.26,.11,-.07,.00,-.11,-.30,-.22,.02,.16,.33 94 | 1972,.01,-.18,.22,-.35,.17,.17,-.40,-.50,-.23,.05,.28,.16,-.02,.60 95 | 1973,.16,.10,.22,.12,.18,.17,.21,.26,.01,.06,.29,.22,.07,.28 96 | 1974,-.08,-.20,.03,-.17,-.20,.17,-.26,-.10,-.19,-.24,-.17,.22,-.09,.55 97 | 1975,-.02,-.06,.02,.12,-.24,.15,.20,.36,-.06,-.31,-.16,.14,.14,.22 98 | 1976,-.11,-.21,.00,-.26,-.12,.07,-.05,-.33,-.29,-.14,-.10,.11,.22,-.37 99 | 1977,.17,.11,.23,.13,.15,.23,.21,.22,.05,.08,.23,.21,.31,.15 100 | 1978,.07,.02,.11,-.03,.08,.14,-.03,.00,-.04,.10,.07,.21,.13,-.11 101 | 1979,.16,.08,.24,-.03,.26,.22,-.56,.06,.08,.24,.27,.29,.33,-.24 102 | 1980,.27,.16,.38,.07,.29,.45,.35,.01,.01,.31,.28,.35,.37,.96 103 | 1981,.33,.39,.27,.51,.18,.35,1.34,.78,.08,.21,.16,.28,.38,.52 104 | 1982,.14,.05,.22,-.07,.27,.16,-.30,.07,-.08,.24,.30,.18,.32,-.23 105 | 1983,.31,.26,.38,.24,.43,.23,.34,.67,-.06,.29,.58,.21,.41,-.03 106 | 1984,.16,.04,.29,.03,.18,.28,.39,.08,-.11,.06,.30,.16,.32,.59 107 | 1985,.12,-.01,.25,-.03,.09,.31,.37,-.27,.00,.03,.16,.30,.45,.09 108 | 1986,.18,.13,.24,.11,.22,.21,.10,.25,.04,.16,.29,.25,.25,-.05 109 | 1987,.34,.27,.41,.08,.58,.26,-.22,.14,.13,.55,.62,.32,.25,.10 110 | 1988,.41,.38,.44,.42,.38,.44,.82,.51,.23,.32,.45,.38,.20,1.14 111 | 1989,.29,.29,.29,.43,.15,.34,.45,.67,.27,.09,.22,.36,.30,.36 112 | 1990,.44,.51,.37,.62,.36,.37,.67,.83,.47,.35,.38,.37,.37,.33 113 | 1991,.41,.41,.41,.47,.37,.41,.83,.61,.27,.32,.42,.32,.29,1.01 114 | 1992,.22,.12,.32,.08,.29,.28,-.11,.36,-.04,.20,.38,.21,.33,.41 115 | 1993,.24,.19,.29,.14,.31,.25,.69,.24,-.10,.27,.35,.27,.39,-.14 116 | 1994,.31,.36,.26,.44,.30,.20,.43,.46,.43,.25,.34,.27,.23,-.10 117 | 1995,.45,.58,.31,.71,.43,.21,1.41,.96,.33,.40,.46,.29,.15,.06 118 | 1996,.34,.28,.39,.27,.32,.43,.88,.20,.12,.30,.33,.34,.29,1.07 119 | 1997,.47,.53,.41,.55,.51,.33,.82,.89,.26,.50,.52,.42,.37,-.06 120 | 1998,.62,.73,.52,.82,.70,.34,1.04,.93,.67,.60,.79,.39,.31,.20 121 | 1999,.40,.50,.30,.73,.21,.32,.51,.83,.75,.15,.27,.47,.19,.05 122 | 2000,.40,.50,.30,.71,.24,.30,1.16,.76,.55,.19,.29,.42,.10,.32 123 | 2001,.53,.63,.43,.80,.41,.43,1.10,.81,.70,.39,.43,.57,.24,.39 124 | 2002,.62,.71,.54,.83,.58,.47,1.39,.97,.57,.54,.63,.47,.32,.81 125 | 2003,.61,.73,.49,.82,.61,.38,1.56,.95,.51,.58,.64,.44,.24,.47 126 | 2004,.53,.67,.40,.75,.54,.31,.68,.93,.67,.55,.53,.48,.23,-.11 127 | 2005,.67,.83,.51,.99,.61,.43,2.00,1.17,.55,.59,.62,.49,.19,.75 128 | 2006,.61,.78,.45,.94,.54,.38,1.62,1.05,.66,.54,.55,.51,.20,.32 129 | 2007,.64,.81,.46,1.07,.45,.45,1.90,1.30,.67,.42,.47,.49,.07,1.11 130 | 2008,.51,.64,.39,.86,.36,.37,1.37,1.02,.60,.31,.41,.53,.09,.42 131 | 2009,.63,.69,.57,.73,.67,.48,1.23,.58,.66,.64,.70,.60,.15,.79 132 | 2010,.70,.86,.53,.97,.67,.46,1.98,.85,.73,.70,.63,.63,.20,.41 133 | 2011,.58,.70,.46,.92,.35,.55,2.09,.89,.56,.37,.34,.65,.18,.97 134 | 2012,.61,.76,.47,.96,.50,.41,1.88,.88,.72,.45,.55,.56,.19,.34 135 | 2013,.64,.74,.54,.86,.56,.53,1.17,1.02,.67,.56,.55,.63,.23,.79 136 | 2014,.73,.89,.56,1.04,.65,.52,1.78,1.12,.75,.67,.62,.71,.18,.58 137 | 2015,.86,1.12,.61,1.24,.91,.40,1.66,1.44,.99,.93,.89,.73,.18,-.27 138 | 2016,.98,1.26,.71,1.50,.97,.49,3.05,1.41,1.06,.92,1.02,.66,.25,.42 139 | 2017,.90,1.11,.68,1.32,.79,.61,2.21,1.35,1.02,.81,.77,.75,.35,.68 140 | 2018,.82,.99,.66,1.19,.64,.70,1.87,1.09,1.03,.69,.59,.78,.37,1.07 -------------------------------------------------------------------------------- /Day 9/rainbow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanisha03/Journey-with-JS/2a83f5eb414b42752ab13eff318d5a43285817b4/Day 9/rainbow.jpg -------------------------------------------------------------------------------- /Day 9/testapi.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 17 | 22 | Document 23 | 24 | 25 | 26 |
27 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /Day 9/testcsv.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /Day 9/testdata.csv: -------------------------------------------------------------------------------- 1 | Year,Glob,NHem,SHem,24N-90N,24S-24N,90S-24S,64N-90N,44N-64N,24N-44N,EQU-24N,24S-EQU,44S-24S,64S-44S,90S-64S 2 | 1880,-.18,-.31,-.06,-.38,-.17,-.01,-.97,-.47,-.25,-.21,-.13,-.04,.05,.67 3 | 1881,-.10,-.19,-.01,-.32,.05,-.07,-.91,-.46,-.14,.03,.07,-.06,-.07,.60 -------------------------------------------------------------------------------- /Day 9/testimage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 10 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Quiz Results/Day 1 EOP JS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanisha03/Journey-with-JS/2a83f5eb414b42752ab13eff318d5a43285817b4/Quiz Results/Day 1 EOP JS.jpg -------------------------------------------------------------------------------- /Quiz Results/Day 2 EOP JS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanisha03/Journey-with-JS/2a83f5eb414b42752ab13eff318d5a43285817b4/Quiz Results/Day 2 EOP JS.jpg -------------------------------------------------------------------------------- /Quiz Results/Day 3 EOP JS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanisha03/Journey-with-JS/2a83f5eb414b42752ab13eff318d5a43285817b4/Quiz Results/Day 3 EOP JS.jpg -------------------------------------------------------------------------------- /Quiz Results/Day 4 EOP JS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanisha03/Journey-with-JS/2a83f5eb414b42752ab13eff318d5a43285817b4/Quiz Results/Day 4 EOP JS.jpg -------------------------------------------------------------------------------- /Quiz Results/Day 5 EOP JS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanisha03/Journey-with-JS/2a83f5eb414b42752ab13eff318d5a43285817b4/Quiz Results/Day 5 EOP JS.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Journey-with-JS 2 | 3 | A part of the Education Outreach Program by GirlScript Tech, "Journey with JavaScript" is one of the courses to provide virtual classes to a set of students. 4 | 5 | This repo contains all of the study material as well as resouces for each of the classes. 6 | 7 | ## Links 8 | 9 | [Intro to Mentors](https://drive.google.com/file/d/1xVnHcZxKn2dv9NDrP2NKNt0lIFJR8P9U/view) 10 | 11 | [Timeline for course](https://docs.google.com/spreadsheets/d/151wNgh1Gw4IyIw8cUuGXPI8m9FjaZ6_76TM4sJkeL0o/edit?ts=5e95dc8f#gid=0) 12 | 13 | [Detailed course structure](https://docs.google.com/document/d/1KJts1SD5AxsXfUqPIbvDpIocLRGsFIZCrU3iuixZpus/edit) 14 | 15 | ## Day 1: Intro to JS 16 | 17 | - [Presentation](https://slides.com/saurabhchauhan-1/deck/fullscreen) 18 | 19 | ## Day 2: Programming Fundamentals in JS 20 | 21 | - [Presentation](https://slides.com/harshjobanputra/deck) 22 | 23 | ## Day 3: DOM 24 | 25 | - [Presentation](https://slides.com/harshjobanputra/eop-js-day-2) 26 | - [Codepen Example 1](https://codepen.io/harsh-jobanputra/pen/vYNyPrr?editors=1011) 27 | - [Codepen Example 2](https://codepen.io/harsh-jobanputra/pen/wvKoZKv?editors=0011) 28 | - [Codepen Example 3](https://codepen.io/harsh-jobanputra/pen/ZEbBZKJ?editors=1010) 29 | - [Codepen Example 4](https://codepen.io/harsh-jobanputra/pen/qBOqwoQ?editors=1111) 30 | 31 | ## Day 4: ES6 32 | 33 | - [Presentation](https://slides.com/saurabhchauhan-1/deck-83d2ee#/) [PDF in folder] 34 | - Extra Examples Discussed - in folder Day 4 35 | 36 | ## Day 5: Debugging in JS 37 | 38 | - [Presentation](https://slides.com/saurabhchauhan-1/deck-8d3090) [PDF in folder] 39 | - Extra Files for the "Quiz" project - in folder Day 5 40 | 41 | ## Day 6: Closures and Callbacks 42 | 43 | - [Presentation](https://slides.com/saurabhchauhan-1/closures-and-callbacks-by-tanisha) 44 | - Examples covered - in folder Day 6 45 | - [Article](https://medium.com/@tanisha031199/js-the-functional-programming-paradigm-66f1b8d57ee8) 46 | 47 | ## Day 7: Promises, async and await 48 | 49 | - [Presentation](https://docs.google.com/presentation/d/1dR7h3dusEVmE1ZGF7MRPnEElWYmtwXonnRDqqNuddK8/edit#slide=id.g35f391192_00)[PDF in folder] 50 | -Examples Discussed - in folder Day 7 51 | 52 | ## Day 8: Transition and Animations 53 | 54 | - [Drawing Shapes](https://codepen.io/tanisha03/pen/bGVqLww) 55 | - [Transitions](https://codepen.io/tanisha03/pen/XWmMZxo) 56 | - [Animations](https://codepen.io/tanisha03/pen/ExVmogg) 57 | - [Codepen Assigment Doc](https://docs.google.com/document/d/1EWTEt9KCGOgrogTpOtvfiyJKZ2DWQDnMzTjlGY3tQyA/edit) 58 | 59 | 60 | ## Day 9: Fetch api 61 | 62 | - [Presentation](https://docs.google.com/presentation/d/1zWF_1Ha93mFTb4-RwU30_1RWKWAv-oMQ/)[PDF in folder] 63 | -Code files - in folder Day 9 64 | 65 | ## Day 11: Weather api 66 | 67 | -Code files - in folder Day 11 68 | 69 | ## Day 12: Intro to ReactJS 70 | 71 | - [Presentation](https://reactjspresentation.web.app/)[PDF in folder] 72 | 73 | - Code files - in repo : https://github.com/harsh2201/Reactjs-Example 74 | 75 | ## Quiz Results 76 | 77 | ![Day 1 results](https://github.com/tanisha03/Journey-with-JS/blob/master/Quiz%20Results/Day%201%20EOP%20JS.jpg) 78 | ![Day 2 results](https://github.com/tanisha03/Journey-with-JS/blob/master/Quiz%20Results/Day%202%20EOP%20JS.jpg) 79 | ![Day 3 results](https://github.com/tanisha03/Journey-with-JS/blob/master/Quiz%20Results/Day%203%20EOP%20JS.jpg) 80 | ![Day 4 results](https://github.com/tanisha03/Journey-with-JS/blob/master/Quiz%20Results/Day%204%20EOP%20JS.jpg) 81 | ![Day 5 results](https://github.com/tanisha03/Journey-with-JS/blob/master/Quiz%20Results/Day%205%20EOP%20JS.jpg) 82 | 83 | ## Coordinators 84 | 85 | [Harsh Jobanputra](https://github.com/harsh2201) 86 | 87 | [Saurabh Chauhan](https://github.com/blitz450) 88 | 89 | [Shubham Goyal](https://github.com/shugo111) 90 | 91 | [Tanisha Sabherwal](https://github.com/tanisha03) 92 | 93 | [Yogesh Jakhar](https://github.com/yogeshjakhar19) 94 | --------------------------------------------------------------------------------