Skip to content

Instantly share code, notes, and snippets.

@vishalkukreja
Created March 27, 2021 14:14
Show Gist options
  • Save vishalkukreja/b9d4748840fc4963566874951e7f2b2a to your computer and use it in GitHub Desktop.
Save vishalkukreja/b9d4748840fc4963566874951e7f2b2a to your computer and use it in GitHub Desktop.
var colorCodeData = [
{color: "red", value: "#f00"},
{color: "green", value: "#0f0"},
{color: "blue", value: "#00f"},
{color: "cyan", value: "#0ff"},
{color: "magenta", value: "#f0f"},
{color: "yellow", value: "#ff0"},
{color: "black", value: "#000"}
]
var codeInfo = colorCodeData.filter(function(colorVal) {
return colorVal.color == "red"
});
console.log("Details of red color :", codeInfo);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment