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 990049
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T05:53:17+00:00 2026-05-16T05:53:17+00:00

I am new to javascript and I came across these functions which, I believe,

  • 0

I am new to javascript and I came across these functions which, I believe, are for storing a cookie with a name in it (the name being ‘value’). I just don’t understand it! The functions are as follows:

Making the cookie

function setCookie(c_name, value, expiredays) {
var exdate=new Date();
exdate.setDate(exdate.getDate()+expiredays);
document.cookie=c_name+ "=" +escape(value)+ ((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
}

Checking wether there is a cookie stored or not

function getCookie(c_name) {
    if (document.cookie.length>0) {
        c_start=document.cookie.indexOf(c_name + "=");
        if (c_start!=-1) {
            c_start=c_start + c_name.length+1;
            c_end=document.cookie.indexOf(";", c_start);
                if (c_end==-1) c_end=document.cookie.length;
                return unescape(document.cookie.substring(c_start,c_end));
            }
        }
    return "";
}

There’s also a function for displaying a alert-box with the value stored in the cookie, but I’m too lazy to write it down! (I found it in a book)

EDIT: I decided to write the last function which displays a welcome message if the cookie is stored and displays a prompt box if it’s not set

Is it set? If so, do “foo”. If not, do “bar”

function checkCookie() {
username=getCookie('username');
    if (username!=null && username!="") {
    alert('Welcome again ' + username + '!');
    } else {
    username=prompt("Please enter your name:","");
        if (username!=null && username!="") {
        setCookie('username', username,365);
        }
    }
}
  • 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-16T05:53:18+00:00Added an answer on May 16, 2026 at 5:53 am

    Making the cookie:

    Let’s say you want to set a cookie called “favoriteColor” with the value “blue” that expires in a week. The code you want to run is

    document.cookie="favoriteColor=blue;expires=Mon, 16 Aug 2010 23:59:59 GMT";
    

    The function setCookie that you posted is designed to generate that line of code. It generates the date based on the period you give it, it escapes the text of the value, and concatenates the results to create the document.cookie string.

    The only remaining tricky bit is that the expiredays parameter is optional; the line that creates the document.cookie string includes a conditional that checks whether expiredays exists, and doesn’t include the “expires” part of the string if expiredays doesn’t exist. This uses the “ternary operator”: (expiredays==null) ? "" : ";expires="+exdate.toGMTString() means “if expiredays is null, use the empty string, otherwise use ‘;expires=”+exdate.toGMTString()'”.

    The second piece of code you posted is looking for the cookie by searching the set of cookies (which is a single string) for the name given (followed by =) and returning the text from that point up to the next semicolon. So it can pick “blue” out of

    “favoriteBand=Foreigner;favoriteColor=blue;favoriteFood=sushi;”.

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

Sidebar

Related Questions

I was analyzing Javascript codes and came across this line: var date = (new
Being fairly new to JavaScript, I'm unable to discern when to use each of
I'm rusty with delegates and closures in JavaScript, and think I came across a
Learning javascript when I came across the concept of prototype. I succeeded in adding
New to javascript/jquery and having a hard time with using this or $(this) to
I'm relatively new to Javascript and was wondering if there's a quick way to
I've been using PHP for too long, but I'm new to JavaScript integration in
Wondering how to open many new windows with Javascript. I have found plenty of
Is it possible to launch a new window in JavaScript using the window.Open function,
Is there a way to spawn a new window via javascript in IE7 that

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.