Getting the last element of a split string array

object,tipjs,es6

1 - Ask javascript

I need to get the last element of a split array with multiple separators. The separators are commas and space. If there are no separators it should return the original string. If the string is "how,are you doing, today?" it should return "today?" If the input were "hello" the output should be "hello". How can I do this in JavaScript? 

2 - Answer

There's a one-liner for everything. :)

var output = input.split(/[, ]+/).pop();

or

var item = "one,two,three";
var lastItem = item.split(",").pop();
console.log(lastItem); // three

Có thể bạn đã miss một số snippets code

using async/await to catch errors

Rolling loading

Nguyên tắc là theo dõi các sự kiện cuộn trang và phân tích mối quan hệ thuộc tính giữa clientHeight , scrollTop và scrollHeight .

So sánh hai array trong javascript

Làm thế nào để đánh giá xem hai mảng có bằng nhau không? Có hai cách đó là sử dụng JSON.stringify() hoặc toString()

using Typescript callback style error handling

Filter Unique Values

Kiểu đối tượng Set đã được giới thiệu trong ES6 và cùng với ..., ‘spread’ operator, chúng ta có thể sử dụng nó để tạo một mảng mới chỉ với các giá trị duy nhất.