Temitope Ayodele

Temitope Ayodele @temmietope

About: Frontend and Web Accessibility Engineer passionate about optimizing for web performance, user experience and accessibility.

Location:
Nigeria
Joined:
Jun 2, 2019

Temitope Ayodele
articles - 22 total

Logical Assignment Operators

Logical Assignment Operators was introduced in the ECMAScript 2021 update. It is a new feature that...

Learn More 3 0Jan 30 '23

Logical Operators

Logical operators are very useful in Javascript as they allow you to compare values and assign a...

Learn More 6 1Dec 3 '21

Markdown cheatsheet

Originally published on my blog You can style texts on the web with markdown. Markdown files use the...

Learn More 12 1Feb 9 '21

Rounded edges on table rows

To add border radius to a table row tr, you have to specifically target the first table data td on th...

Learn More 24 3Jan 30 '21

Light theme.. Swoosh! Dark Theme

Originally written on my blog. Many people prefer to read on a dark screen, while others prefer the...

Learn More 49 2Jan 26 '21

helloWorld to Hello World

To convert camelCase string to Title Case (ES6) const convertCamelToTitleCase = (camelCase) =>...

Learn More 7 0Dec 14 '20

Faster loading webpages with webP images

Have you ever wondered why your website takes forever to load? It is probably because you are using t...

Learn More 256 15Nov 21 '20

Blur scrolling-div content behind an element using pure CSS

To blur the scrolling div content behind an element, the backdrop-filter css property is used. The di...

Learn More 40 4Nov 19 '20

Toggle Password Visibility

For input types of 'password', browsers mark the user's input (typically by replacing the characters...

Learn More 12 0Oct 14 '20

Quick set-up for ESLint

ESLint helps to format code and analyze it to make suggestions for improvement. This is a quick guid...

Learn More 4 1Sep 30 '20

Web Accessibility- Building website for everyone

When building a website, it is important to consider the audience (users). There are different catego...

Learn More 8 0Sep 18 '20

Regex for Passwords

Minimum eight characters, at least one letter and one number: "^(?=.*[A-Za-z])(?=.*\d)[A-Za-z\d]{8,...

Learn More 14 1Sep 3 '20

Object.entries()

Object.entries() is used for listing all key-value pairs in an object. It accepts an object as a argu...

Learn More 6 2May 9 '20

Git commands

Here is a list of some useful git commands. Initialize empty Git repository git init...

Learn More 80 8May 3 '20

Git and Github

tl:dr Git is a version control system that is installed locally on the computer, while Github is a cl...

Learn More 8 0Apr 27 '20

Embedding a Google Drive image in HTML

TL:DR- Convert the link generated by Google drive from https://drive.google.com/file/d/[imag...

Learn More 37 14Mar 13 '20

How to truncate multi-line string with Pure CSS

It is easy to truncate a single-line text. white-space: nowrap; overflow: hidden; text-...

Learn More 13 0Oct 13 '19

CRUD app concept

Using various methods, any programming language can be used to make a CRUD app. CRUD stands for Creat...

Learn More 10 0Sep 26 '19

What is JSX?!

JSX is a XML like syntax extension for JavaScript. It was created by a team at Facebook. It is cool b...

Learn More 8 0Aug 27 '19

The Difference between a Library and a Framework

A library and a Framework are both reusable code written to solve problems. To know the difference be...

Learn More 20 0Aug 26 '19

MVC - Model, View, Controller

MVC is a popular way of organizing your code based on concerns. This concept was originally invented...

Learn More 17 2Aug 26 '19

How to make a custom Input Range slider using HTML, CSS and JavaScript

HTML has an input type of range that works awesomely. With just some CSS styling, you are good to go....

Learn More 10 0Jun 10 '19