Advertisement
xickoh

details

Jan 19th, 2020
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. let details = title.split(/-(.+)/)[1].split('-');
  2. let color, storage = "";
  3. $(details).each(function(k, v) {
  4. if (k == (details.length - 1)) {
  5. color = v.trim();
  6. } else if (v.indexOf('GB') >= 0) {
  7. storage = v.trim();
  8. }
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement