Ask questions, share knowledge, and connect with a vibrant community on IDNLearn.com. Ask your questions and receive accurate, in-depth answers from our knowledgeable community members.

What are some ways to cut down on repetitive code in your website?​

Sagot :

Answer:

using functions or loops

Explanation:

Functions allow you to repeat code execution simply by calling the function containing the code that needs to be repeated multiple times.

Loops also allow you to execute the same code repeatedly.