<sup>
and <sub>
elements?
<sub>
can be used to generate subscripts for text<sup>
generates superscripts that can be used for adding references/footnotes into a document<abbr>
element, what attribute must be added to provide the full expansion of the term?
<title>
into the element to have it show the full text of the abbreviation<p>
We use <abbr title="Hypertext Markup Language">HTML</abbr> to structure our web documents.
</p>
We use HTML to structure our web documents.
h2
color: black;
padding: 5px;
color
padding
h2 {
color: black;
padding: 5px;
}
String
+
Addition-
Subtraction*
Multiplication/
Divisionfunction
.
function convertTemp(fTemp) {
return cTemp = (fTemp - 32) * (5/9);
console.log(cTemp);
alert(`${fTemp} F is ${cTemp} C`)
}
else if
allows you to chain together a series of conditional statements to evaluate and run code blocks based on those conditions==
Equals===
Strictly Equals>=
Greater than or equal to&&
and ||
?
&&
is an AND
statement
||
is an OR
statement
0
or 1
; true
or false
let userName
will be undefined
none
, nothing
, null
type
let userName = null
sets userName to nothing