I get a list of tag names from the server and fill getedTags with data.
my problem is data that it is a type of string while it must be an array , data value: "["HTML","CSS"]" but i need ["HTML","CSS"] how can i fetch an array of strings and add to getedTags variable?
var getedTags = [];
$.get(getTagurl,
function (data) {
getedTags = data;
});