Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

tolowercase

const sentence = 'The quick brown fox jumps over the lazy dog.';

console.log(sentence.toLowerCase());
// expected output: "the quick brown fox jumps over the lazy dog."
Comment

lowercase

/[A-Z]/  : 'must contain one uppercase'

/([a-z])/  : 'must contain one lowercase'

/(d)/  : 'must contain one number'

/(W)/  : 'must contain one special character'
Comment

PREVIOUS NEXT
Code Example
Javascript :: javascript add to string 
Javascript :: Install PHP debugbar 
Javascript :: jquery properly work 
Javascript :: qr code generator with js 
Javascript :: js array map skip element 
Javascript :: javascript entries() method 
Javascript :: how to make a div auto refresh js 
Javascript :: Get title assert 
Javascript :: javascript array last element 
Javascript :: updatig state in react 
Javascript :: get array by array of indices js 
Javascript :: local reference in angular 
Javascript :: multilone input html 
Javascript :: html form structure 
Javascript :: elif in js 
Javascript :: sort array of objects javascript by properties value 
Javascript :: inline styling to change background color 
Javascript :: promise js 
Javascript :: javascript record video in browser 
Javascript :: js push 
Javascript :: js create nested object from fields 
Javascript :: for loop js Alternatives 
Javascript :: js csv to json 
Javascript :: express formidable 
Javascript :: document.ready javascript 
Javascript :: how to call a function in javascript 
Javascript :: react table handling multiple selected checkbox 
Javascript :: .map method 
Javascript :: Passing a state as a prop in react 
Javascript :: js regrex 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =