Monday, February 25, 2019

Loops

Related imagehttps://classflow.com/activfoundation/resource/downloadResourceFile?resourceId=a61cdf6fbb584d8c863515d24ab0745c&resourceFileType=CONVERTED Google Classroom
Question of the Day Form
Code Combat

Loop - a programming structure used to repeat actions without the player needing to write the same lines of code over and over. What has to be done to the code so it will loop?
Image result for javascript logo


https://classflow.com/activfoundation/resource/downloadResourceFile?resourceId=ba7160ab334f47cea8dfcbfe4500cf68&resourceFileType=CONVERTED
Google Classroom  
Question of the Day Form
CodeHS

Booleans are “truth values” — they are data type that can contain either the value true or false. Boolean statements are statements that evaluate to be true or false. Write a Boolean statement.
Basic JavaScript and Graphics

The <div> tag defines a division or a section in an HTML document.
The <div> element is often used as a container for other HTML elements to style them with CSS.
Write the CSS to give a <div> a background color.

<head>
        <link rel="stylesheet" type="text/css" href="style.css">
</head>
body{
       background-color:Chartreuse;
}
 


No comments: