JavaScript preprocessors can help make authoring JavaScript easier and more convenient. For instance, CoffeeScript can help prevent easy-to-make mistakes and offer a cleaner syntax and Babel can bring ECMAScript 6 features to browsers that only support ECMAScript 5.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
HTML Settings
Here you can Sed posuere consectetur est at lobortis. Donec ullamcorper nulla non metus auctor fringilla. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.
///////////////////////////////// Conditional Operators ////////////////////////////////
// JavaScript's conditional operator can be used as a shorthand for conditional statements(these are covered in a later lesson).
// The conditional operator assigns a value to a variable according to the result of a specified condition.
// The conditional operator has a specified syntax(way of writing/coding) instead of an assigned operator key.
// 1. Conditional : used to test the relationship between a variable's value and another variable's value, using the comparison operators
// Syntax: variablename = (condition) ? value1:value2
// Examples:
let time = 1800; //this is 8pm in military time
let currentSky = (time >= 1650) ? "dark":"light";
time = 700;//this is 7am military time
currentSky = (time <= 1650) ? "light":"dark";
// Q : What is the result of the comparison on line 13 (light or dark)?
///////////////////////////////// Logical Operators ///////////////////////////////////////
// JavaScript's logical operators are used to determine whether an entire statement/condition is true or false depending on the operation and values involved.
// These can be used to assign boolean values to variables or to determine the next course of action in conditional statements.
// The logical operators have symbols known as the operators that are used to perform the operations
// 1. And : if the values on both sides of the operand are true, then the operation returns true. If one is false, the operation returns false. If both are false, the operantion returns false.
// Operator: &&
// Examples:
x = 20;
y = 30;
j = 19;
z = (x > 10) && (y < 50); // returns true
// 2. Or : if one or more values are true, the entire statement returns true. Only if both sides of the operand are false does the entire statement return true
// Operator: ||
// Examples:
x = 20;
y = 30;
z = (x > 10) || (y < 15); // returns true because the left side is true, even though the right side is false
// 3. Not : the not operator returns the opposite of the value it is operating on.
// Operator: !
// Examples:
x = false;
y = true;
z = !x; //returns true
z = !y; //returns false
///////////////////////// Exercises /////////////////////////
// 1. Declare a new variable named hours, and set it equal to 12. Use a conditional operator to print "open" if the variable 'hours' is less than or equal to 18, and 'closed' otherwise.
// 2. What does the value of z result to on line 73? Line 74? Line 75?
x = 50;
y = 27;
j = 64;
z = (x > 90) && (y < 9);
z = (x <= j) && (y >= 9);
z = (x != j++) && (y == (5*6));
// 3. What does the value of z result to on line 80? Line 81? Line 82?
x = 20;
y = 30;
z = (x/2 <= 10) || (y/2 >= 15);
z = (x*5 != 100) || (x*5 == 50);
z = (x*5 <= 100) || (x*5 >= 50);
// 4. What does the value of z result to on line 87? Line 88? Line 89?
x = false;
y = true;
z = !x || !y;
z = !z;
z = !z && !x;
Also see: Tab Triggers