🤓
Working
I am a React and TypeScript developer from Panama.
-
Juan Moises Torrijos
- Panamá
- juanmtorrijos.com
- in/juanmtorrijos
- https://codepen.io/moitorrijos
- https://dribbble.com/JuanMTorrijos
Pinned Loading
-
A quadratic equation solver in JS
A quadratic equation solver in JS 1var quadEquationSolver = function (a, b, c) {
2var rootPart = Math.sqrt( (b * b) - (4 * a * c) );
3var denom = 2 * a;
45var firstRoot = (-b + rootPart)/denom;
-
A function to convert any string to ...
A function to convert any string to title case including non capitalizing words in english and spanish 1function toTitleCase(str: string | undefined | null) {
2if (!str) return "";
3const nonCapitalizedWords = ["a", "an", "the", "and", "but", "or", "nor", "for", "yet", "so", "as", "at", "by", "for", "in", "of", "on", "per", "to", "with"];
4const nonCapitalizedWordsSpanish = ["un", "una", "unos", "unas", "el", "la", "los", "las", "y", "pero", "o", "ni", "por", "aún", "asÃ", "como", "en", "por", "para", "de", "del", "al", "con"];
5 -
temporizador
temporizador PublicUn temporizador de cuenta regresiva para múltiples usos.
JavaScript
-
react-redux-ts-todo-app
react-redux-ts-todo-app PublicTodo App built with React, Redux and TypeScript
TypeScript
-
-
A function that renames all keys in ...
A function that renames all keys in an object 1const persons = [
2{
3name: 'Juan Perez',
4nationality: 'Panamanian',
5country_of_birth: 'Panama',
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.