CoffeeScript demo, coffeescriptdemo

Source: Internet
Author: User

CoffeeScript demo, coffeescriptdemo
# Coffee-script.js resolution xx. coffee script can be embedded directly in the browser, but it is not recommended to use it in real time, coffee-script.js: http://coffeescript.org/extras/coffee-script.js
# To locally install coffee, compile xx. coffee into xx. js. Command: coffee-c xx. coffee
# VARIABLES
MyVar = 1
# Array
MyArray = [1, 2, 3, 4, 5]
# Object
Leader =
Name: "wj"
Age: 25
Alert (leader. name)
# Function if x = null x default 6
Square = (x = 6)->
X * x
Alert (square (myVar ))
Alert (square ())

# Judgment
# Three-object operation
MyVar = 0 if leader. name = 'wj'
Alert (myVar)

If myVar = 0
MyVar = 1
Else if myVar = 1
MyVar = 2
Else
MyVar = 3


# Traversal
MyVar = myVar + x for x in myArray;

MyVar = myVar + x for x in myArray when x = 5

Alert (myVar)


I used html5 js to create an on-site application for a game. Sina Weibo's javascript Implementation of oauth authentication demo has no wealth.

Games are often found on the google homepage.
 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.