_.clone()函數用於創建給定對象的淺拷貝。嵌套的對象或數組將使用引用進行複製,而不是重複。
用法:
_.clone( object )
參數:該函數接受如上所述和以下描述的單個參數:
- object:它包含需要複製的對象的值。
返回值:它返回給定對象的shallow-copy。
下麵的示例說明Underscore.js中的_.clone()函數:示例1:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src=
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js">
</script>
</head>
<body>
<script type="text/javascript">
var info = {
Company:'GeeksforGeeks',
Address:'Noida',
Contact:'+91 9876543210'
};
console.log(_.clone(info));
</script>
</body>
</html>
輸出:
範例2:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src=
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js">
</script>
</head>
<body>
<script type="text/javascript">
var clon = _.clone({
Name:'Ashok',
Age:32,
Email:'ashok@gfg.com'
});
console.log(clon);
</script>
</body>
</html>
輸出:
相關用法
- PHP Imagick clone()用法及代碼示例
- PHP ImagickDraw clone()用法及代碼示例
- d3.js selection.clone()用法及代碼示例
- JQuery clone()用法及代碼示例
- Lodash _.clone()用法及代碼示例
- PHP imagecreatetruecolor()用法及代碼示例
- p5.js year()用法及代碼示例
- d3.js d3.utcTuesdays()用法及代碼示例
- PHP ImagickDraw getTextAlignment()用法及代碼示例
- PHP Ds\Sequence last()用法及代碼示例
- PHP array_udiff_uassoc()用法及代碼示例
- PHP geoip_continent_code_by_name()用法及代碼示例
注:本文由純淨天空篩選整理自AshokJaiswal大神的英文原創作品 Underscore.js | _.clone() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。