js实现 驼峰、连字符转换

1、驼峰转换连字符
example:fontSize => font-size

const font = 'fontSize'
font.replace(/([A-Z])/g, '-$1').toLowerCase()

2、连字符转换驼峰
example:font-size => fontSize

const font = 'font-size'
font .replace(/-(\w)/g, (_, c) => c ? c.toUpperCase() : '')

转换完成可console.log打印查看

你可能感兴趣的:(备忘录,javascript)