JS - Outputting condition with prompt

0 votes
187 views
added Jul 6, 2018 in Javascript by LC Marshal Captain (25,790 points)
edited Jul 13, 2018 by LC Marshal
//Condition with prompt question
  let year = prompt('In which year was ECMAScript-2015 specification published?', '');
  if (year == 2015) {
    alert( 'You are right!' );
  } else if (year < 2015) {
    alert('hey, do you think ECMAScript is so outdated?')
  }
  else {
    alert('Wrong, wrong, wrong')
  }
lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...