

Edgar Cervantes / Android Authority
For those who’ve ever tried to code from scratch, you most likely already know that it consists of logical reasoning, repetitive typing, and fixing bugs. For these causes, it’s usually simpler to work with a coding accomplice that may assist you give you concepts and resolve unintended errors. Fortunately, ChatGPT can just do that totally free. Whether or not you might want to write code or assessment an current codebase, ChatGPT has grow to be a useful device for software program growth nearly in a single day.
So on this article, let’s take a more in-depth have a look at ChatGPT’s coding capabilities and the way you need to use it in your personal tasks.
What programming languages does ChatGPT know?
ChatGPT’s underlying giant language mannequin was educated on billions of textual content samples, most of which originated from the web. With so many web sites devoted to writing code as of late, it’s secure to say that ChatGPT is aware of a factor or two about main programming languages. For a extra data-backed reply, contemplate the next record of widespread programming languages, sourced from public GitHub repositories:
- Python
- Java
- JavaScript
- C / C++ / C#
In fact, that is not at all an exhaustive record. Usually talking, you’ll discover ChatGPT will ship competent code in older, extra established languages because it has extra coaching to again it up. That’s to not say you possibly can’t use it for a more recent language like Kotlin, simply that the outcomes is probably not as spectacular.
One approach to doubtlessly enhance ChatGPT’s skill to put in writing code is to make use of the newest GPT-4 mannequin. It’s an optionally available characteristic for now, however it tremendously improves the chatbot’s capabilities. Sadly, having access to GPT-4 requires a subscription to ChatGPT Plus, which prices $20 per thirty days. To maintain issues easy, we’ll use the free model of ChatGPT all through this text; simply know that you could count on even higher outcomes with GPT-4.
Easy methods to use ChatGPT to put in writing code

Calvin Wankhede / Android Authority
There are a number of other ways by which you need to use ChatGPT to put in writing code. However whatever the method, keep in mind that the usefulness of code will rely completely in your enter immediate. In different phrases, you need to specify precisely what you need from the top product – the extra element in your enter immediate, the higher.
One other factor to bear in mind is that though you possibly can ask ChatGPT to put in writing complete apps or tasks, that’s doubtless not the very best technique. You see, the chatbot is inclined to creating errors so it’s higher to generate quick snippets and confirm that every one works. And on that observe, it’s additionally price noting that ChatGPT’s coaching knowledge is sort of two years previous so that you would possibly run into outdated conventions and hyperlinks. We’ll spotlight one such instance quickly.
For now, listed here are some methods by which ChatGPT will help you write code.
Writing code with ChatGPT
Let’s begin with a easy instance that includes some JavaScript, HTML, and CSS. I requested ChatGPT to create an internet site that shows the present buying and selling value of a selected inventory. Or on this case, the S&P 500 index.
In its first try, ChatGPT generated a little bit of code that appeared like it might work however I wasn’t too pleased with its method. Particularly, I didn’t like the truth that the code known as for jQuery, an exterior JavaScript library. So I requested ChatGPT if it might put off that requirement and use vanilla JavaScript as an alternative. The chatbot obliged and generated code with none jQuery, as you possibly can see within the second screenshot.
ChatGPT can refine the code it generates too, simply point out your private preferences.
Did ChatGPT’s code for the web site work? Sure, so long as I adopted its directions. You see, fetching the stay value for a selected inventory requires connecting to a third-party web site. ChatGPT used Alpha Vantage’s API so I wanted to join my very own entry key and add it to the code. With that in place, I had a working webpage that shows the present value of the S&P 500 index.

Calvin Wankhede / Android Authority
From this level on, I can modify the web site in keeping with my very own wants or ask ChatGPT to additional enhance the code. For instance, I can ask it to incorporate an inventory of shares as an alternative of simply displaying the S&P 500 and have the web page auto-refresh each couple of minutes. That manner, I’ll all the time have the newest value while not having to manually refresh it every time.
Use ChatGPT to clarify a operate
Have you ever ever come throughout a chunk of code that you just don’t totally perceive? ChatGPT will help with that. You may merely copy and paste the operate in a immediate and ask for a proof as I did within the screenshot above. I wrote the Python code as a part of a Telegram chatbot that sends a random XKCD comedian at any time when the person requests one.
As you possibly can see, it nailed the context of the operate and even wrote down a line-by-line breakdown. ChatGPT additionally precisely acknowledged that the code used the python-telegram-bot library though I didn’t explicitly point out it.
Bettering or simplifying code
The above instance confirmed how ChatGPT understands capabilities, however can it enhance one thing you’ve already written? Sure, and it does a very good job too. Persevering with with the above operate that fetches a random XKCD comedian, I requested ChatGPT if there have been any methods to enhance my code.
A lot to my shock, ChatGPT managed to ship genuinely useful recommendations and it even rewrote the operate with all the fixes included. Compared side-by-side, the up to date operate is clearly the superior one. It consists of correct error dealing with, follows Python’s variable conventions, and even consists of feedback.
Changing code from one language to a different
For those who’ve labored with a number of programming languages, you recognize that one isn’t all the time higher than the opposite. However what if in case you have an current snippet of code that must be transformed into a distinct language? ChatGPT will help with that too.
But once more, we’ll proceed utilizing my random XKCD comedian operate and ask ChatGPT to rewrite it in JavaScript. Bear in mind, I wrote the unique in Python, a very totally different language.
ChatGPT can translate programming languages, however it may possibly’t all the time discover excellent replacements.
ChatGPT transformed the syntax from one language to a different as anticipated. Nonetheless, the traces that concerned sending a Telegram message again to the person weren’t correct. Despite the fact that it informed me to import a distinct library for JavaScript, I didn’t discover one which supported ChatGPT’s utilization. That leads me to consider that ChatGPT both hallucinated or made up a JavaScript operate that appears convincing however received’t really interface with Telegram.
So what did we study from this train? Asking ChatGPT to translate code works for smaller chunks, however it may possibly stumble in some areas. The accuracy largely relies on how a lot your code depends on exterior libraries and companies. I’m positive ChatGPT would have fared higher if I had fed it with some documentation associated to a JavaScript Telegram bot library.
Discovering bugs in code
Debugging generally is a time-consuming course of, however ChatGPT can care for it if you happen to embrace the code in your preliminary immediate. For this instance, I requested it to generate a chunk of buggy Python code and level out its flaws.
Why doesn’t my ChatGPT code work?

Edgar Cervantes / Android Authority
As we noticed within the above examples, ChatGPT doesn’t all the time generate ready-to-use outcomes. In actual fact, it may possibly even make main errors that forestall the code from operating in any respect. Listed here are a number of the reason why this would possibly occur and how one can repair them:
- Syntax errors: If the code doesn’t work or compile in any respect, ChatGPT has almost certainly made a obtrusive mistake. Merely copy the error and ask for recommendation on tips on how to repair it in a follow-up immediate. With sufficient context, the chatbot will doubtless perceive what it did improper the primary time round and supply a revised model that truly works.
- Lacking dependencies: ChatGPT might generate code the place it calls or references an exterior library or module. In programming, a library refers to a group of code that you could import into your challenge. These might must be put in earlier than you possibly can run the code, so ask ChatGPT if the code depends on any dependencies.
- Outdated info: As talked about beforehand, ChatGPT doesn’t learn about something that has occurred post-2021. So likelihood is that you just’re utilizing newer variations of libraries, languages, and different instruments that ChatGPT merely can’t account for. There’s no simple answer for this, however you possibly can attempt teaching it with newer info by way of a collection of prompts. Alternatively, you possibly can attempt your luck with Bing Chat, because it has the power to look the web.
- Character restrict: For those who try and generate a fancy program, likelihood is that it’ll cease abruptly in some unspecified time in the future. That is due to ChatGPT’s hidden character restrict, which presently hovers round 4,000 characters. To beat this limitation, merely ask for code chunks and piece them collectively in a code editor.
If these limitations seem to be a deal-breaker to you, keep in mind that there are different AI-powered choices on the market. A few of them are extra competent as effectively. GitHub Co-pilot, for instance, tops our suggestion record of ChatGPT alternate options for coding. That’s as a result of it has been explicitly educated on giant codebases, which makes it way more correct than ChatGPT for writing code.
Supply hyperlink