Should I stick with JavaScript for my game project or switch to a different platform?

0
2
Asked By DevDude24 On

I'm currently working on a website for my board game where I want to randomly generate cards instead of making hundreds by hand. So far, I've been using JavaScript, but as I add more features like HP, attack, speed, and unique abilities for each card, I'm running into some issues. I'm starting to think that maybe JavaScript isn't powerful enough for what I'm trying to achieve, especially since I'm having trouble with transferring JSON data and it feels clunky in different web browsers. I'm considering whether I should move on to a dedicated game development platform instead. Any advice on whether JavaScript can handle full-fledged games or if I should make the switch?

6 Answers

Answered By On

c

Answered By Aaron Garnes On

a

Answered By CodeCrafter99 On

You know, there are some pretty solid game engines out there that can help, but you can definitely build your game using JavaScript as well. Your struggles might more be about skill level rather than the limitations of JavaScript itself. If you really dive into JS, you can do a lot!

Answered By PixelPundit84 On

Honestly, for what you're doing, JavaScript can work just fine. It tends to get less efficient when you're making real-time games, so if that’s your goal, you might want to consider a more robust engine like Unity or Unreal. But with the right knowledge in JavaScript, you can handle everything you mentioned.

GameDevNinja42 -

That’s good to know! Sounds like getting familiar with JS features might be the key.

Answered By Dan On

c

Answered By On

r

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.