GPT-5 Announcement: OpenAI Reveals Next-Generation AI Model
+OpenAI's latest language model demonstrates unprecedented reasoning capabilities and achieves human-level performance across various domains.
+ Artificial Intelligence +diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6f3a291 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} \ No newline at end of file diff --git a/array_challenges.js b/array_challenges.js index 3e3c564..ec2ca18 100644 --- a/array_challenges.js +++ b/array_challenges.js @@ -45,7 +45,10 @@ const movies = [ */ // ✍️ Solve it here ✍️ - + const movie=movies.map((movie) => { + return `${movie.title} - Rating: ${movie.rating}/10`; + }) + console.log(movie); /* Task 2: Find Highly Rated Movies 🌟 (`.filter`) @@ -67,5 +70,7 @@ const movies = [ // ✍️ Solve it here ✍️ - - \ No newline at end of file + const highly = movies.filter((movie) => { + return movie.rating >=8.0;}) + console.log(highly); + \ No newline at end of file diff --git a/dom_challenges.js b/dom_challenges.js index bb943d5..9c8e263 100644 --- a/dom_challenges.js +++ b/dom_challenges.js @@ -117,7 +117,19 @@ export const newsData = { } ] }; - +/*{
OpenAI's latest language model demonstrates unprecedented reasoning capabilities and achieves human-level performance across various domains.
+ Artificial Intelligence +