Skip to content

Instantly share code, notes, and snippets.

@Zulcom
Last active October 19, 2017 16:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Zulcom/a551c4122c71f17eb5047cd7e97f4e76 to your computer and use it in GitHub Desktop.
Save Zulcom/a551c4122c71f17eb5047cd7e97f4e76 to your computer and use it in GitHub Desktop.
Вторая программа: «Сколько гулять?» Основы JavaScript \ Условия HTMLacademy
var temperature = 20;
var itsRaining = false;
var minutes = (!itsRaining && temperature && temperature<=35) ? 20 - Math.abs(20-temperature) : 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment