<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.
h2color: black;padding: 5px;colorpaddingh2 {
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 falselet userName will be undefinednone, nothing, null type
let userName = null sets userName to nothing