Kiểm tra định dạng email bằng Javascript

tipjs,validate

Kiểm tra định dạng email bằng Javascript

let isEmailAddress = val => {
	return /^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$/.test(val) || /w+([-+.]w+)*@w+([-.]w+)*.w+([-.]w+)*/.test(val);
}
console.log(isEmailAddress('gmail.com@.com'))//false
console.log(isEmailAddress('gmail.com@gm.com'))//true

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

using javascript callback style error handling

Ajax, call jQuery POST to node.js expressjs

Ajax, call jQuery POST to node.js expressjs

10 mẹo sử dụng array và object trong javascript

10 mẹo sử dụng array và object trong javascript

Merge Array

How to combine two sorted arrays into one? We can do this easily with the spread operator.

Convert Array-like to True Array

Convert Array-like to True Array