Skip to content

Instantly share code, notes, and snippets.

@conanak99
Created December 11, 2020 09:00
Embed
What would you like to do?
// Tách thành function riêng
// Trim and upper case
function chimUp(input) {
// Có bug chỉ cần sửa 1 chỗ
return input.trim().replace(/[^a-zA-Z ]/g, "").toUpperCase()
}
// Có thể dễ dàng dùng mà không cần copy paste
let input = chimUp('abd4%$#@#')
const username = 'ahihi-de-em-di'
const trimmedUsername = chimUp(username)
// ...Copy tiếp logic qua đoạn khác
const id = 'jro@091ksa'
return chimUp(id)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment