Venue Rental
Are you looking to book a venue for a corporate event, wedding, or birthday party? Please use our form below to get an accurate and instant quote.
Additional Services
Please choose any additional products or services you may need.
More services
Please choose any additional products or services you may need.
100
300
100
200
500
Total
0
console.log( 'Code is Poetry' );
JavaScript (script.js):
function calculate() {
const budget = document.getElementById('budget').value;
const channels = document.querySelectorAll('input[name="channels"]:checked');
const results = document.getElementById('results');
let allocation = budget / channels.length;
results.innerHTML = Resultados:
;
channels.forEach(channel => {
results.innerHTML += ${channel.value.toUpperCase()}: COP ${allocation.toFixed(2)}
;
});
}