Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6999081
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T20:29:42+00:00 2026-05-27T20:29:42+00:00

I was reading through my javascript file, and two questions came to my mind:

  • 0

I was reading through my javascript file, and two questions came to my mind:

1) i have 26 strings of text that i use, and some of them gets repeated in several functions.
So i thought if would be a good idea to declare all them as global vars?

2) 95% of my code is javascript, the rest is JQuery. The logics are very simple. Is it worth converting all my JS code to JQuery?

Sample code:

    email = document.getElementById('email').value;
    document.myForm.submit();
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T20:29:42+00:00Added an answer on May 27, 2026 at 8:29 pm

    It is usually a good idea to group the constant variables in a single spot, so they are defined only once, without duplication, and are easy to look at and modify.

    However, I would prefer to group the dictionary into a single object or module. This would reduce clutter on the global namespace, would indicate the variables are connected and would allow you to iterate and manipulate them better (if you wish to do so). It is the same reasoning behind using arrays instead of having x1, x2, …, xn variables.

    //setting up the strings
    var strings = {
        //string id : string value
        'a' : 'a string',
        'b' : 'another string'
    };
    
    //using the strings
    console.log( strings.a );
    console.log( strings.['a'] );
    

    Also, jQuery is just a Javascript library. I don’t really see a reason to try to convert the code (and risk accidentaly breaking it), given the info you gave us.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Reading through some of the questions here, the general concensus seems to be that
Does anyone have code of a simple web browser file/script (HTML/javascript/whatever) that can upload
I have used 3 some jquery related files namely <script type=text/javascript src=/blog/jquery/jquery-1.7.1.min.js></script> <link type=text/css
I want to read a binary file in JavaScript that would be gotten through
I'm reading through the Javascript RegExp documentation and noticed that the regex feature x(?=y)
So I've been reading through Javascript - The Good Parts and one thing that
Reading through this question on multi-threaded javascript, I was wondering if there would be
I was reading through this thread: Hidden Features of JavaScript? and found this post:
Reading through the SendAsync , BeginAsync method illustrations of Socket s, I realized that
I have been reading through the C++ FAQ and was curious about the friend

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.