<div id="root"/>
const questions = [
{
category: 'General Questions',
title: 'Question 1?',
content:'Answer 1',
},
{
category: 'Pricing',
title: 'Question 2?',
content:'Answer 2',
},
{
category: 'Pricing',
title: 'Question 2?',
content:'Answer 2',
}];
const cats = questions.map(q => q.category);
document.getElementById("root").innerHTML = cats.filter((q, idx) =>
cats.indexOf(q) === idx);
var images = [{
"id": 1,
"tag": "people",
"src": "img/img1.jpg",
"bsrc": "img/img1b.jpg",
"alt": "Some description"
}, {
"id": 2,
"tag": "places",
"src": "img/img2.jpg",
"bsrc": "img/img2b.jpg",
"alt": "Some description"
}, {
"id": 3,
"tag": "places",
"src": "img/img3.jpg",
"bsrc": "img/img3b.jpg",
"alt": "Some place description"
}, {
"id": 4,
"tag": "things",
"src": "img/img4.jpg",
"bsrc": "img/img4b.jpg",
"alt": "Internet of things"
}, {
"id": 5,
"tag": "people",
"src": "img/img5.jpg",
"bsrc": "img/img5b.jpg",
"alt": "A personal person"
}, {
"id": 6,
"tag": "places",
"src": "img/img6.jpg",
"bsrc": "img/img6b.jpg",
"alt": "Interesting place"
}, {
"id": 7,
"tag": "people",
"src": "img/img7.jpg",
"bsrc": "img/img7b.jpg",
"alt": "Tarabaora"
}, {
"id": 8,
"tag": "places",
"src": "img/img6.jpg",
"bsrc": "img/img6b.jpg",
"alt": "Interesting place"
}, {
"id": 9,
"tag": "places",
"src": "img/img6.jpg",
"bsrc": "img/img6b.jpg",
"alt": "Interesting place"
}];
const filter = (tag, arr) => arr.filter(img => img.tag === tag);
// or in ES5
// var filter = function(tag, arr) {
// return arr.filter(function(img) {
// return img.tag === tag;
// })
// };
const filtered = filter('people', images);
const uniqueTags = [];
images.map(img => {
if (uniqueTags.indexOf(img.tag) === -1) {
uniqueTags.push(img.tag)
}
});
document.getElementById("root").innerHTML = uniqueTags;
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.