Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

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.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                
              
            
!

CSS

              
                
              
            
!

JS

              
                ///////////////////////Exercises /////////////////////////
//1. Create a new object representing a pizza place's customer with the following properties: customerName(string), orderID(number), order(string), orderTotal(number), payed(boolean) assign appropriate values to each of the object's properties
//2. Declare a new method named printOrder that returns the object's properties in this format: "Order #(Customer ID goes here): (order goes here) = (order total goes here)"
//3. Invoke the method and print it to the console
//4. Declare a new method called "pay" that changes the value of the payed boolean property to True
//5. Declare a new method called "receipt" that uses a conditional to check if the customer has payed, and if so, and returns "(Customer Name) payed (order total) for order #(orderID)" If the customer has not payed, the method should return "Awaiting customer payment for order #(order ID)"
//6. Call the receipt method before calling the pay method to ensure the else statement is executed when necessary.

//////////Extra Exercises: 

//1. Create an object called me that stores information about you: add properties for your name, age, favorite food, and favorite emoji (from here: https://www.w3schools.com/charsets/ref_emoji.asp). 
//Add a method called printEmoji, which prints out the favorite emoji property. 
//Add another method which creates a new date object for today and your birthday, and uses an if statement to calculate whether you are over 16 or not (if you are print out your name, and "is over 16."/ If not, print out your name and "is under 16.")

//2. Create an object called me2. Give it the properties name, birthday, and currentDate. Give the birthday property a date object with the date of your birthday, and the currentDate a date object with todays date (just new Date()). 
//Create a method called birthdayMonth. 
//In an if statement, test if the month of your birthday is less than the current month, and if it is, return "I have had my birthday already this year". (you can use me.birthday.getMonth() and me.currentDate.getMonth() to compare the months). 
//If your birth month is the same as the current month, return "My birthday is this month." If it is more than the current month, return out "My birthday will be later this year."
//Invoke your method inside a console.log

//3. Create an object called pet
//Give the pet the properties type, age, name, and fill them out with relevant data.
//Make a method within your object to create an alert with the information, "My pet is called_____. They are a _____. They are _____ years old."
//Invoke your method to make sure its working. 

//4. Create an object which contains the parameters highTemp and lowTemp. Set them equal to the high and low temperatures today (google it!)
//Create a method which returns the following text on your webpage: "The high temperature for today is:____. The low temperature for today is_____."
//Outside of your object, use document.querySelector to select the body of your webpage, and set it equal to your method, so that the text displays on your webpage. 


              
            
!
999px

Console