If you happen to come across this site, please ignore it. I am basically using it to learn WordPress, and at the same time create a collection of links that I have found useful in this task. Thank you.
If you happen to come across this site, please ignore it. I am basically using it to learn WordPress, and at the same time create a collection of links that I have found useful in this task. Thank you.
Fat Arrow functions
function newWord(str) {
return str.substring(1);
}
Can be written as:
newWord = str => str.substring(1);
*********************************************************
function cardHide(card) {
const fullNumber = '2034399002125581';
const last4Digits = fullNumber.slice(-4);
const maskedNumber = last4Digits.padStart(fullNumber.length, '*');
}
Can be written as:
const cardHide = card => card.slice(-4).padStart(card.length, '*');
Acquia – 10 Must-Have Modules to Start Your Drupal 8 Site
CSS Grid Starter Layouts – CSS-Tricks
Recent Comments