I'm pushing values to an array that came from a select box to accomplish that, I'm doing this:
$scope.selectedValues = [{
}]
$scope.print = function() {
$scope.selectedValues.push($scope.model);
}
<div>{{selectedValues}}</div>
What I see in my front end is the array whit the values [{},"01","02"] and not the values only.
I need to present only the values.
$scope.selectedValues = []<div>{{selectedValues.join(" ")}}</div>