Skip to content
View cuneydbolukoglu's full-sized avatar
👻
He writes in his own way
👻
He writes in his own way

Organizations

@daretodigital @musclepassword

Block or report cuneydbolukoglu

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
cuneydbolukoglu/README.md

Hello 👋, I'm Cüneyd

Front-End Developer at Sekom. from Turkey. I am experienced and successful in Javascript. I love developing advanced and innovative applications using React. I work with web apis and create my own apis with next js. I am also very enthusiastic about creating mobile applications with React Native, which allows me to create dynamic and responsive mobile solutions.

javascript react

Projects

Strong random password generator - https://musclepassword.com

Follow me

linkedin medium codepen stackoverflow

Pinned Loading

  1. membership-app membership-app Public

    👥 Membership app via local storage & firebase

    JavaScript 2

  2. webpack webpack Public

    Webpack 5

    JavaScript 1

  3. node-web-console node-web-console Public

    Web SSH Console

    JavaScript 1

  4. How to Remove Array Duplicates in ES6 How to Remove Array Duplicates in ES6
    1
    const data = [1, 2, 2, 3, 3, 4];
    2
    
    
    3
    const removeArrayDuplicates = data.reduce(
    4
      (unique, item) => (unique.includes(item) ? unique : [...unique, item]),
    5
      []