Skip to content

Instantly share code, notes, and snippets.

View famgz's full-sized avatar

Fillipe Miranda famgz

View GitHub Profile
@famgz
famgz / 6_organizacao_familiar.html
Created January 15, 2024 22:12
Atividade 6 - Organização Familiar
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
// # Sistema de Pedidos em um Restaurante
const menu = {}
const pedidos = {}
// - Deverá criar uma funcao `criarItemDoMenu` que recebe 3 parametros `nome`, `preco`, `ingredientes`
function criarItemDoMenu(nome, preco, ingredientes) {
menu[nome] = {