Skip to content

This repository is intended to offer several tips and proposals we may apply when coding with Javascript language.

License

Notifications You must be signed in to change notification settings

carlosmedina-io/code-snipes-for-programming

Repository files navigation

Code snipes for programming.

This repository is intended to offer several snipes and proposals we may apply when programming for the web.

CSS Tips:

JS Tips:

const array = ['x', 'c', 'f', 'a']
alphabetSort(array) // output: ['a','c','f','x']
convertToOrdinal(1)  // output: 1st
convertToOrdinal(2)  // output: 2nd
convertToOrdinal(3)  // output: 3rd
convertToOrdinal(7)  // output: 7th
convertToOrdinal(20) // output: 20th

NodeJs Design Patterns:

Creational Design Patterns.


License

This project is under the MIT License.

About

This repository is intended to offer several tips and proposals we may apply when coding with Javascript language.

Topics

Resources

License

Stars

Watchers

Forks