Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
History is littered with hundreds of conflicts over the future of a community, group, location or business that were "resolved" when one of the parties stepped ahead and destroyed what was there. With the original point of contention destroyed, the debates would fall to the wayside. Archive Team believes that by duplicated condemned data, the conversation and debate can continue, as well as the richness and insight gained by keeping the materials. Our projects have ranged in size from a single volunteer downloading the data to a small-but-critical site, to over 100 volunteers stepping forward to acquire terabytes of user-created data to save for future generations.
The main site for Archive Team is at archiveteam.org and contains up to the date information on various projects, manifestos, plans and walkthroughs.
This collection contains the output of many Archive Team projects, both ongoing and completed. Thanks to the generous providing of disk space by the Internet Archive, multi-terabyte datasets can be made available, as well as in use by the Wayback Machine, providing a path back to lost websites and work.
Our collection has grown to the point of having sub-collections for the type of data we acquire. If you are seeking to browse the contents of these collections, the Wayback Machine is the best first stop. Otherwise, you are free to dig into the stacks to see what you may find.
The Archive Team Panic Downloads are full pulldowns of currently extant websites, meant to serve as emergency backups for needed sites that are in danger of closing, or which will be missed dearly if suddenly lost due to hard drive crashes or server failures.

This section covers the questions for JSON to clear all your concepts.
Question 1
What is the purpose of the search() method in strings?
Returns an array of matches
Finds the index of the first match
Validates a regular expression pattern
Replaces the first match with a new string
Question 2
What does the i flag in a regular expression do?
Makes the search case-insensitive
Searches for all matches globally
Stops the search after the first match
Allows the use of groups in the regular expression
Question 3
Which method converts a JSON string into a JavaScript object?
JSON.stringify()
JSON.parse()
JSON.format()
JSON.validate()
Question 4
What will the following code output?
const obj = { name: "Ajay", age: 25 };
console.log(JSON.stringify(obj));
undefined
{ name: "Ajay", age: 25 }
'{"name":"Ajay","age":25}'
Error
Question 5
Which of the following is a valid JSON structure?
{ "name": "Ajay", "age": 25 }
{ name: "Ajay", age: 25 }
[name: "Ajay", age: 25]
{ name: "Ajay", age: "25" }
Question 6
What will the following code log?
const obj = { name: "Ajay", age: 30 };
const json = JSON.stringify(obj);
console.log(JSON.parse(json).age);
undefined
30
Error
null
Question 7
Which method can convert a JavaScript object to a readable JSON string?
JSON.format()
JSON.validate()
JSON.stringify()
JSON.parse()
Question 8
What is the key difference between JSON and JavaScript objects?
JSON allows functions as values.
JSON keys can be unquoted.
JSON can include circular references.
JSON requires double-quoted keys and string values.
Question 9
What will the following code log?
const json = '[{"id":1},{"id":2}]';
console.log(JSON.parse(json)[0].id);
Error
undefined
1
null
Question 10
What does JSON.parse() do?
Converts a JavaScript object to a JSON string
Parses a JSON string into a JavaScript object
Formats a JSON string for readability
Validates a JSON string
There are 10 questions to complete.