fix(curriculum): 2 typos in the dom click events and web api lecture (#62389)

Co-authored-by: swdev33 <18295918+swdev33@users.noreply.github.com>
This commit is contained in:
swdev33
2025-09-27 06:58:48 +02:00
committed by GitHub
parent adc8860194
commit fb3be5c018
2 changed files with 2 additions and 2 deletions
@@ -39,7 +39,7 @@ An example is the Google Maps API, which you can use to display interactive maps
There are various types of third-party web APIs, including weather APIs, social media APIs, payment APIs, data APIs, translation APIs, and more. You just need to find the API that fits your needs.
Web APIs are essential tools for building modern web applications that can interact with various services and data sources. By learning how to leverage their power, you will expanding your toolset for creating dynamic and engaging websites.
Web APIs are essential tools for building modern web applications that can interact with various services and data sources. By learning how to leverage their power, you will expand your toolset for creating dynamic and engaging websites.
# --questions--
@@ -9,7 +9,7 @@ dashedName: how-do-you-add-attributes-with-setattribute
You have been used to working with attributes in your HTML and CSS projects. But did you know that you can add attributes to your HTML elements in your JavaScript file?
In this lecture, you will learn how work with the `setAttribute()` method to add attributes to your HTML elements.
In this lecture, you will learn how to work with the `setAttribute()` method to add attributes to your HTML elements.
Here is the basic syntax: