21.Email Validation Using String Methods in JavaScript

Опубликовано: 05 Октябрь 2024
на канале: Learning With Faraz
806
16

By the end of this video you will be able to :

1. Implement all the string.prototype methods
2. Validate an email address

in order to understand this video better you should have to understand previous videos

facebook
  / shaik.faraz  

In this video we will be validating email address using two methods of strings that are

includes()
endsWtih()

we will use the includes method to verify if "@" symbol is included in the email address or not

and we will use endsWith method to verify if ".com" is the domain the email address is ending with




21.Email Validation Using String Methods in JavaScript