This repository contains multiple small coding tasks, ranging from Angular API integration to JavaScript DOM manipulation and form validation.
- Description: Implement a paginated user table in Angular.
- Notes: Requires a working API; replace the placeholder API URL with a valid one and include your API key.
- GitHub: ToDoAngular
- Description: Fetch and display user data from a public API in Angular.
- Notes: API key required — update the service file with your key.
- GitHub: ToDoAngular
- Description: Given an array of
n
distinct numbers from1
to(n+1)
with one missing, find the missing number. - GitHub: missingSequence.js
- Description: Add a new
<li>
element ("David") to the existing list and remove the first<li>
element. - GitHub: userList.html
- Description: Validate that username and password fields are not empty before form submission. If validation fails, show an error message; otherwise, log
"Form Submitted"
in the console. - GitHub: login-form.html