logged out
Dark Mode
Show all answers
About
All
OOP
NB
Arrays
Functions
Acronyms
Objects
Data Structures
Networking
Database
CSS
test
test2
Basics
CSS
Reveal answer.
What is an element?
id:71
A HTML element is an individual component of a HTML document. An element is the collection of a start tag, its attributes, an end tag and everything in between.
Reveal answer.
What is micro frontend architecture?
id:92
Combining multiple front end frameworks together.
Reveal answer.
Difference between ‘for-in’ and ‘for of’?
id:7
Both are looping constructs. ‘for in’ iterates over all enumerable property keys of an object. ‘for of’ iterates over the values of an iterable object. What are reference types? Reference types include arrays, objects and functions.
Acronyms
Reveal answer.
What is CI/CD pipeline?
id:119
Continuous integration/ continuous deployment pipeline is a series of steps which must be performed in order to deliver a new version of software. building testing and deploying.
Acronyms
Reveal answer.
What is AJAX?
id:113
Asynchronous javascript and xml. (name is misleading - JSON/plain text as common as XML) AJAX allows web pages to be updated asynchronously, by exchanging data with a web server behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole page.