Skip to content
View subhamchbty's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report subhamchbty

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

Subham Chakraborty

Web and app developer specializing in PHP, JavaScript, and related frameworks.

Website | Email

Skills

  • Languages: PHP, JavaScript
  • Frameworks: Laravel, Node.js, React, React Native, Next.js, Vue.js
  • Databases: MySQL, MongoDB, Firebase
  • Frontend: HTML5, CSS3, SASS
  • Tools: Git

Current Projects

  • Web application using Laravel and Next.js
  • Mobile app development with React Native

Learning

  • AWS services for web applications

Collaboration

I'm open to collaborating on open-source web development projects and building applications for clients.

Expertise

  • Web development best practices
  • Efficient and scalable application architecture
  • Making simpler solutions

Connect

LinkedIn Instagram Medium

GitHub Stats

GitHub stats

Pinned Loading

  1. Increment or get the next english le... Increment or get the next english letter
    1
    function nextChar(c) {
    2
      return String.fromCharCode(c.charCodeAt(0) + 1);
    3
    }
    4
    
                  
    5
    console.log(nextChar('a'));
  2. build a nested (parent-child) object... build a nested (parent-child) object from a basic object using recursion in javascript
    1
    var data = [
    2
        {id: 1, title: 'hello', parent: 0},
    3
        {id: 2, title: 'hello', parent: 0},
    4
        {id: 3, title: 'hello', parent: 1},
    5
        {id: 4, title: 'hello', parent: 3},