Java Script

JavaScript – Split A String

Pinterest LinkedIn Tumblr
var image = "123.jpg,234.jpg";
var name = image.split(",")[0];

Write A Comment