diff --git a/README.md b/README.md index 46c4b9c..f3ef7c9 100644 --- a/README.md +++ b/README.md @@ -241,7 +241,7 @@ Creates new data from the existing one. Mostly applicable to strings, objects, o ```js function composePageUrl(pageName, pageId) { - return `${pageName.toLowerCase()}-${pageId}` + return (pageName.toLowerCase() + '-' + pageId) } ```