+ Reply to Thread
Results 1 to 7 of 7
  1. #1
    The founder resurepus is a splendid one to behold resurepus is a splendid one to behold resurepus is a splendid one to behold resurepus is a splendid one to behold resurepus is a splendid one to behold resurepus is a splendid one to behold resurepus's Avatar
    Join Date
    Nov 2003
    City, State
    Toulouse
    Posts
    7,131

    Beginners JAVASCRIPT

    Let's start with the very basics

    Like human spoken languages (ex: French, English) programming languages have rules (grammar, spelling etc) and meaning for certain special key words. In English the word 'throw' has a meaning; it means to 'toss', 'pitch', 'fling', something or someone. One such 'key word' in JavaScript is the word 'function'; this keyword tells the computer that this is the beginning of code (programming code) that does something, or in other words, takes an action. Here's a made-up example:

    function: Pop up a box and say: 'What's up Jimmy! '

    This made up example (not real programming!) is telling the computer to pop open a box and say: 'What's up Jimmy!'

    Just for the curious, I will now show you the real way to do this with Javascript:

    function popupMessage()
    {
    alert(“What's up Jimmy!”);
    }
    What they h#$% is that suppose to mean? I know that for many of you this is already freaking confusing, but hold on, it's well worth it!


    The complete version of the article can be found here

    follow DesignContest on twitter

    see some of my paintings at: SergeyEpifanov.com and my flickr page

  2. #2
    Elite Designer aurellius is on a distinguished road
    Join Date
    Oct 2004
    City, State
    Portland, Oregon, USA
    Posts
    51
    I figure I'll build off of resurepus' start.

    Programming languages like Javascript are written so that they can be understood in something other than 1s and 0s. Branching off of that , they were constructed off of what people already knew, written language.
    Javascript is a dynamic language, and because it is a client side language, you can do some pretty cool things with it.

    Variables:
    Variables can hold basically any information you tell them to: objects, integers, arrays, or strings.

    Code:
    var num1 = 1;
    var num2 = 2;
    var num3 = num1 + num2;
    document.print(num3);
    Simple math operations like these can make dynamically creating values from user input very easy without needing to refresh the page.

    [edit] Didn't see that it was part of a larger article
    Last edited by aurellius; 03-22-2005 at 01:20 AM.

  3. #3
    Registered User sevehn has a spectacular aura about sevehn has a spectacular aura about
    Join Date
    Oct 2009
    City, State
    Paranaque Philippines / Virginia, USA
    Posts
    193
    Hi!

    here is a good website - wherein - Java Script Tutorials are shown pretty much - step by step - and is (i so very much think) --- "beginner friedly" =D

    JavaScript Tutorial



    =D

  4. #4
    Elite Designer jjyepez has a reputation beyond repute jjyepez has a reputation beyond repute jjyepez has a reputation beyond repute jjyepez has a reputation beyond repute jjyepez has a reputation beyond repute jjyepez has a reputation beyond repute jjyepez has a reputation beyond repute jjyepez has a reputation beyond repute jjyepez has a reputation beyond repute jjyepez has a reputation beyond repute jjyepez has a reputation beyond repute jjyepez's Avatar
    Join Date
    Oct 2009
    City, State
    VE. Caracas, DC
    Posts
    330
    Well, that's a huge mistake armanjackson , javascript has actually nothing to do with Java except for the name .

    Javascript is a totally different language , this is a scripting language actually wich is way different from Java (OOP) .

    Figure it out ! The history of javascript is very interesting indeed!
    Best regards!
    --
    jjyepez
    jjyepez
    --
    I use free web hosting at http://www.000webhost.com.

  5. #5
    Registered User itsme will become famous soon enough itsme will become famous soon enough
    Join Date
    Feb 2010
    Posts
    14
    Thanks for the tutorial!!

  6. #6
    Registered User theli7s is just really nice theli7s is just really nice theli7s is just really nice theli7s is just really nice theli7s is just really nice theli7s's Avatar
    Join Date
    Sep 2010
    Posts
    18
    Here is a nice tutorial about jquery ( javascript library)

    jQuery for Absolute Beginners: The Complete Series | Nettuts+

  7. #7
    Registered User MrHUNK has a spectacular aura about MrHUNK has a spectacular aura about MrHUNK's Avatar
    Join Date
    Sep 2010
    City, State
    Alapuzha,Kerala
    Posts
    10
    Very helpful tutorial

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
Follow us on
Become a fan
Subscribe to our feeds
Circle us

© 2012 DesignContest.com
(Formerly DesignContest.net)

Use of this website by both contest holders and designers is subject to acceptance of our Terms of Services and Privacy Policy.
feedback