Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function makeDictionary(arr) {
- let dictionary = {};
- for (let jsonStr of arr) {
- let obj = JSON.parse(jsonStr);
- let [term, definition] = Object.entries(obj)[0];
- dictionary[term] = definition.trim();
- }
- let sortedTerms = Object.keys(dictionary).sort();
- for (let term of sortedTerms) {
- let definition = dictionary[term];
- console.log(`Term: ${term} => Definition: ${definition}`);
- }
- }
- makeDictionary([
- '{"Coffee":"A hot drink made from the roasted and ground seeds (coffee beans) of a tropical shrub."}',
- '{"Bus":"A large motor vehicle carrying passengers by road, typically one serving the public on a fixed route and for a fare."}',
- '{"Boiler":"A fuel-burning apparatus or container for heating water."}',
- '{"Tape":"A narrow strip of material, typically used to holdor fasten something."}',
- '{"Microphone":"An instrument for converting sound waves into electrical energy variations which may then be amplified, transmitted, or recorded."}',
- ]);
Advertisement
Add Comment
Please, Sign In to add comment