Skip to content

Commit ec59671

Browse files
committed
resolve feedbacl
1 parent a50a47e commit ec59671

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

snippets/javascript/color-manipulation/rgb-to-hex.md renamed to snippets/javascript/color-manipulation/rgb-to-hex-color.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: RGB to Hex Color
33
description: Converts RGB color values to hexadecimal color code.
44
author: jjcantu
5-
tags: javascript,color,conversion,utility
5+
tags: color,conversion
66
---
77

88
```js

snippets/javascript/object-manipulation/deep-clone-object.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Deep Clone Object
33
description: Creates a deep copy of an object or array without reference.
44
author: jjcantu
5-
tags: javascript,object,clone,utility
5+
tags: object,clone
66
---
77

88
```js
@@ -23,5 +23,5 @@ function deepClone(obj) {
2323
// Usage:
2424
const original = { a: 1, b: { c: 2 }, d: [1, 2, 3] };
2525
const cloned = deepClone(original);
26-
console.log(cloned); // Output: { a: 1, b: { c: 2 }, d: [1, 2, 3] }
26+
console.log(cloned); // Output: 'original' but cloned
2727
```

snippets/javascript/string-manipulation/generate-uuid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Generate UUID
33
description: Generates a UUID (v4) string.
44
author: jjcantu
5-
tags: javascript,uuid,utility
5+
tags: uuid, generate, string
66
---
77

88
```js

0 commit comments

Comments
 (0)