原型鏈-面向面試

總有人問我面試時候原型鏈怎麼寫,css

做爲一位職場老司機,面試界的白神。身經百戰,擼出如下的代碼html

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="content-type" content="text/html;charset=utf-8">
    <title>面向面試的原型鏈</title>
    <link rel="stylesheet" type="text/css" href="">
</head>
<body>
<script>
var interviewer = function(){}
var handsome =function(){}
interviewer.prototype = {}
handsome.prototype = {
    rich : function(){
        console.log('I am very rich')
    },
    handsome:function(){
        console.log('The whole world know that I am handsome ')
    }
}
interviewer.prototype = new handsome;
interviewer.prototype.rich()
interviewer.prototype.handsome()
</script>
</body>
</html>

 怎麼樣,看懂的是否是以爲以上的代碼清新脫俗,面目一新面試

沒看懂的,在這裏解釋下函數

首先我定義了interviewer(面試官)和handsome (英俊)2個函數。ui

而後給他們2個的原型加了點東西,固然主要是handsome加參數,一個rich,一個是handsome
spa

固然I am very rich是川普的名言。。。比起希拉里,我以爲川普上臺當米國總統會頗有意思。prototype

川普:「你連你老公都知足不了,如何知足米國人民。」  我以爲是米國最霸氣的競選演講了code

好了,以上打住,最後咱們將handsome這個玩意new了一下給了面試官。htm

 

interviewer.prototype = new handsome;

 

而後高富帥知足了2個條件。。。blog

 

考慮到每一個面試官的身高。。。23333(小四也不必定是個例對吧)

相關文章
相關標籤/搜索