Skip to content
View javierd79's full-sized avatar
🎯
Aiming high
🎯
Aiming high
  • Dataweb C.A
  • Zulia, Venezuela
  • 00:17 (UTC -04:00)

Organizations

@Dataweb-C-A

Block or report javierd79

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
javierd79/README.md

Welcome to my repository

js-standard-style TS-Standard - TypeScript Standard Style Guide Studying at

Hello I'm Javier, a passionate software engineer.
Let's take your project to the next level.

Personal Information

  • Full Name: Javier Diaz.
  • Age: 22.
  • Graduated at: URBE University.
  • Languages: English and Spanish [Native].

Knowledge

I will learn

Contacts:

let Discord = "javierd79";
let Telegram = "@Jajajavier"; 
let Email = "javierdiazt406@gmail.com";

Feel free to contact me about projects, code questions or just to chat :)

Pinned Loading

  1. TuQuintico-Lottery-App TuQuintico-Lottery-App Public

    JavaScript

  2. Tic-Tac-Toe Tic-Tac-Toe Public

    A TicTacToe game to practice Ruby

    Ruby

  3. rifas-landing-page rifas-landing-page Public

    TypeScript

  4. Function to count how many elements ... Function to count how many elements are duplicates in an Array
    1
    const countDuplicate = (array) => {
    2
     	let object = array.reduce((prev, cur) => ((prev[cur] = prev[cur] + 1 || 1), prev), {})
    3
    	console.log(object);
    4
    }
    5