Anyone knows how to concat in js a string with a integer and don't get the ":
This
"<agm-map latitude=" + response.latitude + " longitude=" + response.longitude + "></agm-map>";
Results on
<agm-map [latitude]="51.678418" [longitude]="7.809007"></agm-map>
But I'm trying to get without the ", as I show bellow
<agm-map [latitude]=51.678418 [longitude]=7.809007></agm-map>
Thanks for any help