Skip to content

Instantly share code, notes, and snippets.

View JMA-Dv's full-sized avatar
💭
Becoming the best shape of me

Alejandro Ávila JMA-Dv

💭
Becoming the best shape of me
  • Asterias Software Solutions
  • San Luis Potosí
View GitHub Profile
@JMA-Dv
JMA-Dv / JS Errors and tricks
Last active June 23, 2022 05:18
JS Common errors
//Js common errors
//It sometimes when using a string function such as 'toLoweCase'
const name = 'JMA'
const nameWithError = name.toString();
// name.toLowerCase is not a function
const nameLowered = name.toString().toLowerCase()