0
anyone down to help me in c++ and js
need help in c++
3 Antworten
+ 3
muhammad ali ,
just asking for `help` is a bit too vague. you are asking about `c++` and `javascript` in the same question. it may be better to ask in separate threads.
you also should rework / update your question to make it more specific. give a brief description so that we can get an idea what you are talking about.
> if your question is based on a code, please show it here.
> if your question is related on a tutorial, please indicate it properly.
0
Having worked with both these languages for over a decade at Impero IT Services, I can tell you that the learning journey for each is quite different but complementary.
1. C++
- C++ teaches you how things work under the hood like memory management, data structures, pointers, and object-oriented design. When you grasp these fundamentals, it sharpens your logic & makes it easier to understand what is happening even in high-level languages.
- GeeksforGeeks
- Cppreference
- And of course, SoloLearn’s own practice modules and Code Playground
2. JavaScript
JS is a completely different beast, it's asynchronous, event-driven & browser-powered. I always tell junior devs “Once you understand the DOM, the rest will follow.” Focus on:
- DOM manipulation
- Functions, scopes & closures
- Async/Await and Promises
Try small projects like:
- A to-do app
- A currency converter
- A simple image slider