js題集8

來源:互聯網
上載者:User

標籤:編寫   log   var   一個   nbsp   結果   ==   元素   檢測   

1.

var f = true;

if (f === true) {

  var a = 10;

}

 

function fn() {

  var b = 20;

  c = 30;

}

 

fn();

console.log(a);

console.log(b);

console.log(c);

2.

var x = 1;

var y = 0;

var z = 0;

function add(n){n=n+1;}

y = add(x);

function add(n){n=n+3;}

z = add(x);

3.

for(i=0, j=0; i<10, j<6; i++, j++){

  k = i + j;

}

4.

var two = 0.2;

var one = 0.1;

var eight = 0.8;

var six = 0.6;

[two -one == one,eight- six == two];

運行結果,求更嚴謹的寫法。

5.

編寫一個方法 去掉一個數組的重複元素

eg:var arr = [1,2,3,1,43,12,12,1];

6.

JavaScript中如何檢測一個變數是一個String類型?

7.

實現

“hello world”  -> ‘h e l l o  w o r l d’

js題集8

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.