I am new to angular js , how to select specific or certain data from json array.Return data from an array which date is equal to today , and also get data from json of this current week(all data of the current week), and also of the data of this current month. Thanks
$scope.Combination = [
{
"Name" : "HelloWorld",
"Type" : "Phyton",
"Date": "01/11/2018"
},
{
"Name" : "HelloWorld",
"Type" : "C#",
"Date": "01/08/2018"
},
{
"Name" : "HelloWorld",
"Type" : "JS",
"Date": "01/04/2018"
},
{
"Name" : "HelloWorld",
"Type" : "Ruby",
"Date": "01/07/2018"
},
{
"Name" : "HelloWorld",
"Type" : "C",
"Date": "01/010/2018"
}
];