CodeNewbie Community 🌱

Discussion on: How do I create a variable in Python?

Collapse
 
kaitheceo profile image
Kai Lyons

Hello! Wonderful question!

The simple syntax for a variable is:
variable_name = value

EXAMPLES:
name = "Kai"
is_true = True
zero = 0

Hope this helps!

const modalMarkup = `
`; // 2. Append the markup string to the end of the document body document.body.insertAdjacentHTML('beforeend', modalMarkup);