threadr-rewritten/models/sla.html

28 lines
725 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Document</title>
</head>
<body>
<h1>Lista de frutas</h1>
<div id="array"></div>
<div id="pessoa"></div>
<script type="text/javascript">
let frutas = [];
frutas.push("Maçã");
frutas.push("Laranja");
frutas.push("Limão");
document.getElementById("array").innerHTML = `Frutas = ${frutas}`;
let pessoa = [];
pessoa = {
nome: "Joaquim",
idade: 17,
salario: 14400
}
document.getElementById("pessoa").innerHTML = `${pessoa["nome"]}`;
</script>
</body>
</html>