
Join the Conversation!
Subscribing gives you access to the comments so you can share your ideas, ask questions, and connect with others.
"Please login to view comments"
Subscribing gives you access to the comments so you can share your ideas, ask questions, and connect with others.
By logging in, you'll unlock full access to this and other free tutorials on JSM Pro.
Why? Logging in lets us personalize your learning experience, track your progress, and keep you in the loop with new workshops, coding tips, and platform updates.
You'll also be the first to know about upcoming launches, events, and exclusive discounts.
No spam—just helpful content to level up your skills.
If that sounds fair, go ahead and log in to continue →
Enter your name and email to get instant access
##Looks like we found a thief monkey By the way, I liked the trick how you reached till here. You have a good sense of humor. You will improve a lot if you join our course with this passion.
var
(function-scoped, outdated)let
(block-scoped, modern and recommended)const
(block-scoped, cannot be reassigned)_
, or $
let let = 5;
is invalid)myVar
and myvar
are different)string
, number
, boolean
, null
, undefined
, bigint
, symbol
Objects
, Arrays
, Functions
Subscribing gives you access to a brief, insightful summary of each lecture to stay on track.
00:00:02 As I explained in the last lesson, you're free to use any AI model that you want, from Mistral, even to GROK, or something like Together AI,
00:00:12 DeepSeek, and so on.
00:00:13 But in this course, I'll use OpenAI.
00:00:16 It was the first on the market, but I still find it to be the simplest one to use and integrate within our apps.
00:00:22 So, head over to openai.com, and at the top right, head over to API.
00:00:28 Once you're there, either log in or sign up.
00:00:31 Once you're in, head over to the dashboard under API keys and create a new secret key.
00:00:37 You can give it any kind of name like Devflow and you can also choose the project as Devflow and create it.
00:00:44 Once you do that, copy your key, head back to your project under .env.local and paste it right below.
00:00:53 Open AI underscore API underscore key and make it equal to the key you just copied.
00:01:01 And that's it.
00:01:02 In the next lesson, I'll teach you how to use Vercell's AI SDK to implement it right within our code.
00:01:08 So let's do that next.